diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-10-23 00:45:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-10-23 00:45:51 +0000 |
commit | 566586a698c6712cdf95ee42983df77420fcc622 (patch) | |
tree | 0be32fa89d01f1fbff44620b46711eac43fd55e6 /modules/system/system.test | |
parent | 891512c22912527d54f29fe30ef9f3be110746a3 (diff) | |
download | brdo-566586a698c6712cdf95ee42983df77420fcc622.tar.gz brdo-566586a698c6712cdf95ee42983df77420fcc622.tar.bz2 |
- Patch #608478 by seutje, Bojhan: replace 'Powered by' icon with text.
Diffstat (limited to 'modules/system/system.test')
-rw-r--r-- | modules/system/system.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.test b/modules/system/system.test index 3f66d677b..f8fcaa043 100644 --- a/modules/system/system.test +++ b/modules/system/system.test @@ -972,7 +972,7 @@ class SystemBlockTestCase extends DrupalWebTestCase { */ function testPoweredByBlock() { // Set block title and some settings to confirm that the interface is availble. - $this->drupalPost('admin/structure/block/manage/system/powered-by/configure', array('title' => $this->randomName(8), 'color' => 'powered-black', 'size' => '135x42'), t('Save block')); + $this->drupalPost('admin/structure/block/manage/system/powered-by/configure', array('title' => $this->randomName(8)), t('Save block')); $this->assertText(t('The block configuration has been saved.'), t('Block configuration set.')); // Set the powered-by block to the footer region. @@ -997,7 +997,7 @@ class SystemBlockTestCase extends DrupalWebTestCase { $edit = array(); $edit['system_powered-by[region]'] = 'footer'; $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); - $this->drupalPost('admin/structure/block/manage/system/powered-by/configure', array('title' => '', 'color' => 'powered-blue', 'size' => '80x15'), t('Save block')); + $this->drupalPost('admin/structure/block/manage/system/powered-by/configure', array('title' => ''), t('Save block')); } } |