mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
[ticket/17535] Convert config files, make data providers static
PHPBB-17535
This commit is contained in:
@@ -34,8 +34,10 @@ class phpbb_search_postgres_test extends phpbb_search_common_test_case
|
||||
$user = $this->createMock('\phpbb\user');
|
||||
|
||||
// set config values
|
||||
$config['fulltext_postgres_min_word_len'] = 4;
|
||||
$config['fulltext_postgres_max_word_len'] = 254;
|
||||
$config = new \phpbb\config\config([
|
||||
'fulltext_postgres_min_word_len' => 4,
|
||||
'fulltext_postgres_max_word_len' => 254,
|
||||
]);
|
||||
|
||||
$this->db = $this->new_dbal();
|
||||
$phpbb_dispatcher = new phpbb_mock_event_dispatcher();
|
||||
|
Reference in New Issue
Block a user