diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-11 02:33:14 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2008-10-11 02:33:14 +0000 |
commit | 7e02f2f782418d3452bae636e63e3439e9802336 (patch) | |
tree | 220f275eb5fd29df31678ea4ff7b2885ce661b53 /modules/system/system.test | |
parent | 3ab972cd4f346a620e59a420dfddd581f77114be (diff) | |
download | brdo-7e02f2f782418d3452bae636e63e3439e9802336.tar.gz brdo-7e02f2f782418d3452bae636e63e3439e9802336.tar.bz2 |
#318984 by Xano and Dave Reid: Change 'Core - optional' to 'Core' in modules UI.
Diffstat (limited to 'modules/system/system.test')
-rw-r--r-- | modules/system/system.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/system/system.test b/modules/system/system.test index 29b4e73eb..52c51db72 100644 --- a/modules/system/system.test +++ b/modules/system/system.test @@ -35,7 +35,7 @@ class EnableDisableCoreTestCase extends DrupalWebTestCase { $this->assertTableCount('aggregator', FALSE); $edit = array(); - $edit['modules[Core - optional][aggregator][enable]'] = 'aggregator'; + $edit['modules[Core][aggregator][enable]'] = 'aggregator'; $this->drupalPost('admin/build/modules', $edit, t('Save configuration')); $this->assertText(t('The configuration options have been saved.'), t('Modules status has been updated.')); @@ -44,7 +44,7 @@ class EnableDisableCoreTestCase extends DrupalWebTestCase { // Disable aggregator, check tables, uninstall aggregator, check tables. $edit = array(); - $edit['modules[Core - optional][aggregator][enable]'] = FALSE; + $edit['modules[Core][aggregator][enable]'] = FALSE; $this->drupalPost('admin/build/modules', $edit, t('Save configuration')); $this->assertText(t('The configuration options have been saved.'), t('Modules status has been updated.')); @@ -68,7 +68,7 @@ class EnableDisableCoreTestCase extends DrupalWebTestCase { function testEnableWithoutDependency () { // Attempt to enable content translation without locale enabled. $edit = array(); - $edit['modules[Core - optional][translation][enable]'] = 'translation'; + $edit['modules[Core][translation][enable]'] = 'translation'; $this->drupalPost('admin/build/modules', $edit, t('Save configuration')); $this->assertText(t('Some required modules must be enabled'), t('Dependecy required.')); |