diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-03 03:04:34 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-08-03 03:04:34 +0000 |
commit | 0bd7fcbf38d71df62904bd4c86046e9c85c9085d (patch) | |
tree | 4fc269aca56523e2d83bb743c36a1a47f7e38b2d /modules/forum | |
parent | 7fc6e2eaf9d60dd071f9a9d6360047f8a2312116 (diff) | |
download | brdo-0bd7fcbf38d71df62904bd4c86046e9c85c9085d.tar.gz brdo-0bd7fcbf38d71df62904bd4c86046e9c85c9085d.tar.bz2 |
#226587 by JohnAlbin, E.Z, et al: Make sidebar regions semantic and RTL-friendly.
Diffstat (limited to 'modules/forum')
-rw-r--r-- | modules/forum/forum.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/forum/forum.test b/modules/forum/forum.test index 9abfc5f23..f3137edac 100644 --- a/modules/forum/forum.test +++ b/modules/forum/forum.test @@ -76,14 +76,14 @@ class ForumTestCase extends DrupalWebTestCase { // Enable the active forum block. $edit = array(); - $edit['forum_active[region]'] = 'right'; + $edit['forum_active[region]'] = 'sidebar_second'; $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->assertResponse(200); $this->assertText(t('The block settings have been updated.'), t('[Active forum topics] Forum block was enabled')); // Enable the new forum block. $edit = array(); - $edit['forum_new[region]'] = 'right'; + $edit['forum_new[region]'] = 'sidebar_second'; $this->drupalPost('admin/structure/block', $edit, t('Save blocks')); $this->assertResponse(200); $this->assertText(t('The block settings have been updated.'), t('[New forum topics] Forum block was enabled')); |