summaryrefslogtreecommitdiff
path: root/modules/system/system.test
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-16 23:48:38 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2009-10-16 23:48:38 +0000
commita09822b363813158a6182057917080b22d3ca8f7 (patch)
tree8d2cdf475730f06f040fd06badabf51cd00266d9 /modules/system/system.test
parent81bba297e67e18e6277dc76eb584a680808471a7 (diff)
downloadbrdo-a09822b363813158a6182057917080b22d3ca8f7.tar.gz
brdo-a09822b363813158a6182057917080b22d3ca8f7.tar.bz2
#606640 by eojthebrave and sun: Use proper menu router paths for the block module.
Diffstat (limited to 'modules/system/system.test')
-rw-r--r--modules/system/system.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.test b/modules/system/system.test
index 9d792932f..4f75cf21d 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/configure/system/powered-by', 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), 'color' => 'powered-black', 'size' => '135x42'), 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/configure/system/powered-by', array('title' => '', 'color' => 'powered-blue', 'size' => '80x15'), t('Save block'));
+ $this->drupalPost('admin/structure/block/manage/system/powered-by/configure', array('title' => '', 'color' => 'powered-blue', 'size' => '80x15'), t('Save block'));
}
}