summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-03-14 16:41:30 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-03-14 16:41:30 +0000
commit38969b48ffd65d8bbf2b7c6722288c5341d7a4f6 (patch)
tree12c24fe330db341ac54d72b5dc638dae14642408 /modules
parent78027e1a1a1d4fabd69c9806f49edd6d94a31e2d (diff)
downloadbrdo-38969b48ffd65d8bbf2b7c6722288c5341d7a4f6.tar.gz
brdo-38969b48ffd65d8bbf2b7c6722288c5341d7a4f6.tar.bz2
#315533 by JohnAlbin and catch: Remove all core themes but Garland and Stark. Yay for making Drupal 75% more palatable to designers. These themes can be found in contrib thanks to the venerable John Wilkins. :)
Diffstat (limited to 'modules')
-rw-r--r--modules/block/block.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/block/block.test b/modules/block/block.test
index ea26a247d..073648b3c 100644
--- a/modules/block/block.test
+++ b/modules/block/block.test
@@ -166,8 +166,8 @@ class NonDefaultBlockAdmin extends DrupalWebTestCase {
function testNonDefaultBlockAdmin() {
$admin_user = $this->drupalCreateUser(array('administer blocks', 'administer site configuration'));
$this->drupalLogin($admin_user);
- $this->drupalPost('admin/build/themes', array('status[bluemarine]' => 1), t('Save configuration'));
- $this->drupalGet('admin/build/block/list/bluemarine');
- $this->assertRaw('bluemarine/style.css', t('Bluemarine CSS found'));
+ $this->drupalPost('admin/build/themes', array('status[stark]' => 1), t('Save configuration'));
+ $this->drupalGet('admin/build/block/list/stark');
+ $this->assertRaw('stark/layout.css', t('Stark CSS found'));
}
}