summaryrefslogtreecommitdiff
path: root/modules/forum
diff options
context:
space:
mode:
Diffstat (limited to 'modules/forum')
-rw-r--r--modules/forum/forum.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/forum/forum.test b/modules/forum/forum.test
index 0b6da3839..4941734bf 100644
--- a/modules/forum/forum.test
+++ b/modules/forum/forum.test
@@ -193,11 +193,11 @@ class ForumTestCase extends DrupalWebTestCase {
*/
function deleteForum($tid) {
// Delete the forum id.
- $this->drupalPost('admin/build/forum/edit/forum/'. $tid, array(), t('Delete'));
+ $this->drupalPost('admin/build/forum/edit/forum/' . $tid, array(), t('Delete'));
$this->drupalPost(NULL, NULL, t('Delete'));
-
+
// Assert that the forum no longer exists.
- $this->drupalGet('forum/'. $tid);
+ $this->drupalGet('forum/' . $tid);
$this->assertRaw(t('No forums defined'), 'The forum was not found');
}