summaryrefslogtreecommitdiff
path: root/modules/system/system.test
diff options
context:
space:
mode:
Diffstat (limited to 'modules/system/system.test')
-rw-r--r--modules/system/system.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/system/system.test b/modules/system/system.test
index aff5749f7..9c2558de4 100644
--- a/modules/system/system.test
+++ b/modules/system/system.test
@@ -696,7 +696,7 @@ class AccessDeniedTestCase extends DrupalWebTestCase {
// Log back in, set the custom 403 page to /user and remove the block
$this->drupalLogin($this->admin_user);
variable_set('site_403', 'user');
- $this->drupalPost('admin/structure/block', array('user_login[region]' => '-1'), t('Save blocks'));
+ $this->drupalPost('admin/structure/block', array('blocks[user_login][region]' => '-1'), t('Save blocks'));
// Check that we can log in from the 403 page.
$this->drupalLogout();
@@ -1165,7 +1165,7 @@ class SystemBlockTestCase extends DrupalWebTestCase {
// Set the powered-by block to the footer region.
$edit = array();
- $edit['system_powered-by[region]'] = 'footer';
+ $edit['blocks[system_powered-by][region]'] = 'footer';
$this->drupalPost('admin/structure/block', $edit, t('Save blocks'));
$this->assertText(t('The block settings have been updated.'), t('Block successfully moved to footer region.'));
@@ -1175,7 +1175,7 @@ class SystemBlockTestCase extends DrupalWebTestCase {
// Set the block to the disabled region.
$edit = array();
- $edit['system_powered-by[region]'] = '-1';
+ $edit['blocks[system_powered-by][region]'] = '-1';
$this->drupalPost('admin/structure/block', $edit, t('Save blocks'));
// Confirm that the block is hidden.
@@ -1183,7 +1183,7 @@ class SystemBlockTestCase extends DrupalWebTestCase {
// For convenience of developers, set the block to its default settings.
$edit = array();
- $edit['system_powered-by[region]'] = 'footer';
+ $edit['blocks[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' => ''), t('Save block'));
}