diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-07-31 11:20:43 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-07-31 11:20:43 +0000 |
commit | 9f44fd1b86fdcc412a0ce7b2d3d2048e8564a979 (patch) | |
tree | c1b88928743e476c3f0ca18410c6682c1c373627 /modules/system/system.test | |
parent | 9e0e109d1d498521aa606567bfe628e55a75d912 (diff) | |
download | brdo-9f44fd1b86fdcc412a0ce7b2d3d2048e8564a979.tar.gz brdo-9f44fd1b86fdcc412a0ce7b2d3d2048e8564a979.tar.bz2 |
- Patch #536440 by Gábor Hojtsy: the attached patch moves the Structure >> Themes section to the top level Appearance item as outlined in the D7UX IA.
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 f037f73d6..48526c735 100644 --- a/modules/system/system.test +++ b/modules/system/system.test @@ -919,7 +919,7 @@ class SystemThemeFunctionalTest extends DrupalWebTestCase { 'admin_theme' => 'garland', 'node_admin_theme' => TRUE, ); - $this->drupalPost('admin/structure/themes', $edit, t('Save configuration')); + $this->drupalPost('admin/appearance', $edit, t('Save configuration')); $this->drupalGet('admin'); $this->assertRaw('themes/garland', t('Administration theme used on an administration page.')); @@ -937,7 +937,7 @@ class SystemThemeFunctionalTest extends DrupalWebTestCase { $edit = array( 'node_admin_theme' => FALSE, ); - $this->drupalPost('admin/structure/themes', $edit, t('Save configuration')); + $this->drupalPost('admin/appearance', $edit, t('Save configuration')); $this->drupalGet('admin'); $this->assertRaw('themes/garland', t('Administration theme used on an administration page.')); @@ -951,7 +951,7 @@ class SystemThemeFunctionalTest extends DrupalWebTestCase { 'admin_theme' => '0', 'node_admin_theme' => FALSE, ); - $this->drupalPost('admin/structure/themes', $edit, t('Save configuration')); + $this->drupalPost('admin/appearance', $edit, t('Save configuration')); $this->drupalGet('admin'); $this->assertRaw('themes/garland', t('Site default theme used on administration page.')); |