From 3d1d25a122399bb218451cc4ed63ac0f2d2a02bb Mon Sep 17 00:00:00 2001 From: Dhruv Date: Mon, 10 Mar 2014 01:02:57 +0530 Subject: [PATCH] [ticket/11040] Use unique text for the test post added PHPBB3-11040 --- tests/functional/search/base.php | 4 ++-- 1 file 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();