diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-10-05 21:21:15 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-10-05 21:21:15 +0530 |
commit | 67536eb9f78bb1834574bfa9c224775f6edbab2e (patch) | |
tree | 09ec5860652851b7cc37c48af6c1e2aad1cc4fba | |
parent | 2b5311deac33677389b52b449476066a7302b727 (diff) | |
download | forums-67536eb9f78bb1834574bfa9c224775f6edbab2e.tar forums-67536eb9f78bb1834574bfa9c224775f6edbab2e.tar.gz forums-67536eb9f78bb1834574bfa9c224775f6edbab2e.tar.bz2 forums-67536eb9f78bb1834574bfa9c224775f6edbab2e.tar.xz forums-67536eb9f78bb1834574bfa9c224775f6edbab2e.zip |
[ticket/11608] Update search backend class names to namespaces
PHPBB3-11608
-rw-r--r-- | tests/functional/search/mysql_test.php | 2 | ||||
-rw-r--r-- | tests/functional/search/native_test.php | 2 | ||||
-rw-r--r-- | tests/functional/search/postgres_test.php | 2 | ||||
-rw-r--r-- | tests/functional/search/sphinx_test.php | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/functional/search/mysql_test.php b/tests/functional/search/mysql_test.php index db6f688e2a..0693c69968 100644 --- a/tests/functional/search/mysql_test.php +++ b/tests/functional/search/mysql_test.php @@ -14,5 +14,5 @@ require_once dirname(__FILE__) . '/base.php'; */ class phpbb_functional_search_mysql_test extends phpbb_functional_search_base { - protected $search_backend = 'phpbb_search_fulltext_mysql'; + protected $search_backend = '\phpbb\search\fulltext_mysql'; } diff --git a/tests/functional/search/native_test.php b/tests/functional/search/native_test.php index 63e7085308..ce568df616 100644 --- a/tests/functional/search/native_test.php +++ b/tests/functional/search/native_test.php @@ -14,7 +14,7 @@ require_once dirname(__FILE__) . '/base.php'; */ class phpbb_functional_search_native_test extends phpbb_functional_search_base { - protected $search_backend = 'phpbb_search_fulltext_native'; + protected $search_backend = '\phpbb\search\fulltext_native'; protected function assert_search_not_found($keywords) { diff --git a/tests/functional/search/postgres_test.php b/tests/functional/search/postgres_test.php index f733238c8f..487b8aeebb 100644 --- a/tests/functional/search/postgres_test.php +++ b/tests/functional/search/postgres_test.php @@ -14,7 +14,7 @@ require_once dirname(__FILE__) . '/base.php'; */ class phpbb_functional_search_postgres_test extends phpbb_functional_search_base { - protected $search_backend = 'phpbb_search_fulltext_postgres'; + protected $search_backend = '\phpbb\search\fulltext_postgres'; protected function assert_search_not_found($keywords) { diff --git a/tests/functional/search/sphinx_test.php b/tests/functional/search/sphinx_test.php index 9db4138714..ef2522f9ed 100644 --- a/tests/functional/search/sphinx_test.php +++ b/tests/functional/search/sphinx_test.php @@ -14,7 +14,7 @@ require_once dirname(__FILE__) . '/base.php'; */ class phpbb_functional_search_sphinx_test extends phpbb_functional_search_base { - protected $search_backend = 'phpbb_search_fulltext_sphinx'; + protected $search_backend = '\phpbb\search\fulltext_sphinx'; public function test_search_backend() { |