mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/10945] Fix Unit Tests as per new changes to split_keywords
PHPBB3-10945
This commit is contained in:
parent
41fa32bae4
commit
304c0799ba
1 changed files with 6 additions and 6 deletions
|
@ -106,17 +106,17 @@ class phpbb_search_native_test extends phpbb_search_test_case
|
||||||
array(
|
array(
|
||||||
'-foo',
|
'-foo',
|
||||||
'all',
|
'all',
|
||||||
false,
|
true,
|
||||||
null,
|
array(),
|
||||||
null,
|
array(1),
|
||||||
array(),
|
array(),
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
'-foo -bar',
|
'-foo -bar',
|
||||||
'all',
|
'all',
|
||||||
false,
|
true,
|
||||||
null,
|
array(),
|
||||||
null,
|
array(1, 2),
|
||||||
array(),
|
array(),
|
||||||
),
|
),
|
||||||
// all common
|
// all common
|
||||||
|
|
Loading…
Add table
Reference in a new issue