mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-11 01:55:24 +02:00
[ticket/11608] Update search backend class names to namespaces
PHPBB3-11608
This commit is contained in:
parent
2b5311deac
commit
67536eb9f7
@ -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';
|
||||
}
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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)
|
||||
{
|
||||
|
@ -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()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user