diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2014-03-10 01:02:57 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2014-03-12 11:03:30 +0530 |
commit | 3d1d25a122399bb218451cc4ed63ac0f2d2a02bb (patch) | |
tree | aa1359a153b157fd795dc3d68ab3ec0a7e4e0db8 | |
parent | 799c5759906245ee930d375ca58c041246f7f348 (diff) | |
download | forums-3d1d25a122399bb218451cc4ed63ac0f2d2a02bb.tar forums-3d1d25a122399bb218451cc4ed63ac0f2d2a02bb.tar.gz forums-3d1d25a122399bb218451cc4ed63ac0f2d2a02bb.tar.bz2 forums-3d1d25a122399bb218451cc4ed63ac0f2d2a02bb.tar.xz forums-3d1d25a122399bb218451cc4ed63ac0f2d2a02bb.zip |
[ticket/11040] Use unique text for the test post added
PHPBB3-11040
-rw-r--r-- | tests/functional/search/base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/search/base.php b/tests/functional/search/base.php index 979b7ed6bd..d377181f4a 100644 --- a/tests/functional/search/base.php +++ b/tests/functional/search/base.php @@ -32,7 +32,7 @@ abstract class phpbb_functional_search_base extends phpbb_functional_test_case $this->login(); $this->admin_login(); - $post = $this->create_topic(2, 'Test Topic 1 Subject', 'This is a test topic posted by the testing framework.'); + $post = $this->create_topic(2, 'Test Topic 1 foosubject', 'This is a test topic posted by the barsearch testing framework.'); $crawler = self::request('GET', 'adm/index.php?i=acp_search&mode=settings&sid=' . $this->sid); $form = $crawler->selectButton('Submit')->form(); @@ -58,7 +58,7 @@ abstract class phpbb_functional_search_base extends phpbb_functional_test_case $this->logout(); $this->assert_search_found('phpbb3+installation', 1, 3); - $this->assert_search_found('subject+framework', 1, 2); + $this->assert_search_found('foosubject+barsearch', 1, 2); $this->assert_search_not_found('loremipsumdedo'); $this->login(); |