diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-28 03:56:43 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-06-28 03:56:43 +0000 |
commit | 4dafb3953cabb0911286e6d683b495f6e1c43238 (patch) | |
tree | 6ada357091da9b02add4c17a25018ab4c11e48bb /modules/system/system.test | |
parent | 783d5411797cbbbb67060f3bf6484860fae71782 (diff) | |
download | brdo-4dafb3953cabb0911286e6d683b495f6e1c43238.tar.gz brdo-4dafb3953cabb0911286e6d683b495f6e1c43238.tar.bz2 |
#482346 by Berdir: Move module installation logic to module_enable() to prevent errors upon enabling modules.
Diffstat (limited to 'modules/system/system.test')
-rw-r--r-- | modules/system/system.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/system/system.test b/modules/system/system.test index 17694ca98..b62a6c74b 100644 --- a/modules/system/system.test +++ b/modules/system/system.test @@ -113,6 +113,7 @@ class EnableDisableTestCase extends ModuleTestCase { // Install (and enable) aggregator module. $edit = array(); $edit['modules[Core][aggregator][enable]'] = 'aggregator'; + $edit['modules[Core][forum][enable]'] = 'forum'; $this->drupalPost('admin/build/modules', $edit, t('Save configuration')); $this->assertText(t('The configuration options have been saved.'), t('Modules status has been updated.')); |