diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-30 00:22:03 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2010-08-30 00:22:03 +0000 |
commit | 410fcdc718391005eb729855cceb06cde05cd758 (patch) | |
tree | e5abb679216eff264b576effd371babd16c90a91 /modules/node/node.test | |
parent | 10fca34cf15638eb63b6d147d448a52c73bf4baa (diff) | |
download | brdo-410fcdc718391005eb729855cceb06cde05cd758.tar.gz brdo-410fcdc718391005eb729855cceb06cde05cd758.tar.bz2 |
#761956 by David_Rothstein, Xen, sun, tstoeckler, Bojhan, zzolo, yoroy, jenlampton, linclark, BarisW: Fixed Dashboard blocks and regions should not appear on the main blocks configuration page.
Diffstat (limited to 'modules/node/node.test')
-rw-r--r-- | modules/node/node.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/node/node.test b/modules/node/node.test index 69dded38b..f2d6952d6 100644 --- a/modules/node/node.test +++ b/modules/node/node.test @@ -634,7 +634,7 @@ class NodeBlockTestCase extends DrupalWebTestCase { // Set the block to a region to confirm block is available. $edit = array(); - $edit['node_syndicate[region]'] = 'footer'; + $edit['blocks[node_syndicate][region]'] = 'footer'; $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->assertText(t('The block settings have been updated.'), t('Block successfully move to footer region.')); } @@ -1398,7 +1398,7 @@ class NodeBlockFunctionalTest extends DrupalWebTestCase { // Set the block to a region to confirm block is available. $edit = array( - 'node_recent[region]' => 'sidebar_first', + 'blocks[node_recent][region]' => 'sidebar_first', ); $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->assertText(t('The block settings have been updated.'), t('Block saved to first sidebar region.')); |