aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDavid King <imkingdavid@gmail.com>2013-09-25 16:09:08 -0700
committerDavid King <imkingdavid@gmail.com>2013-09-25 16:09:08 -0700
commit427f73a3238e54f1a3e44047716c88ee93c7fcfe (patch)
treee9d1956cf1887f98c9a433bc7d446ed456272a19 /tests
parent468133c07f1dd27bedb2f31c904708c6374a7989 (diff)
parent2794dc4e68fb8c5c741d96c3b0f685a7145ea74f (diff)
downloadforums-427f73a3238e54f1a3e44047716c88ee93c7fcfe.tar
forums-427f73a3238e54f1a3e44047716c88ee93c7fcfe.tar.gz
forums-427f73a3238e54f1a3e44047716c88ee93c7fcfe.tar.bz2
forums-427f73a3238e54f1a3e44047716c88ee93c7fcfe.tar.xz
forums-427f73a3238e54f1a3e44047716c88ee93c7fcfe.zip
Merge pull request #1732 from nickvergessen/ticket/11865
[ticket/11865] includes/bbcode.php is missing namespace change
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/posting_test.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/posting_test.php b/tests/functional/posting_test.php
index 7fd1e4fdcf..dd95704952 100644
--- a/tests/functional/posting_test.php
+++ b/tests/functional/posting_test.php
@@ -22,8 +22,8 @@ class phpbb_functional_posting_test extends phpbb_functional_test_case
$crawler = self::request('GET', "viewtopic.php?t={$post['topic_id']}&sid={$this->sid}");
$this->assertContains('This is a test topic posted by the testing framework.', $crawler->filter('html')->text());
- // Test creating a reply
- $post2 = $this->create_post(2, $post['topic_id'], 'Re: Test Topic 1', 'This is a test post posted by the testing framework.');
+ // Test creating a reply with bbcode
+ $post2 = $this->create_post(2, $post['topic_id'], 'Re: Test Topic 1', 'This is a test [b]post[/b] posted by the testing framework.');
$crawler = self::request('GET', "viewtopic.php?t={$post2['topic_id']}&sid={$this->sid}");
$this->assertContains('This is a test post posted by the testing framework.', $crawler->filter('html')->text());