diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-11-04 15:58:48 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2014-03-08 21:45:23 +0530 |
commit | 304c0799ba036bd318f33186f23d1ba631b07786 (patch) | |
tree | 1ada7c574c27fb1507b00470d6071c9055301dd3 /tests/search | |
parent | 41fa32bae4d9f7663ab97dd7cf16b99f5b438abb (diff) | |
download | forums-304c0799ba036bd318f33186f23d1ba631b07786.tar forums-304c0799ba036bd318f33186f23d1ba631b07786.tar.gz forums-304c0799ba036bd318f33186f23d1ba631b07786.tar.bz2 forums-304c0799ba036bd318f33186f23d1ba631b07786.tar.xz forums-304c0799ba036bd318f33186f23d1ba631b07786.zip |
[ticket/10945] Fix Unit Tests as per new changes to split_keywords
PHPBB3-10945
Diffstat (limited to 'tests/search')
-rw-r--r-- | tests/search/native_test.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/search/native_test.php b/tests/search/native_test.php index 18c6df2445..4911160cc0 100644 --- a/tests/search/native_test.php +++ b/tests/search/native_test.php @@ -106,17 +106,17 @@ class phpbb_search_native_test extends phpbb_search_test_case array( '-foo', 'all', - false, - null, - null, + true, + array(), + array(1), array(), ), array( '-foo -bar', 'all', - false, - null, - null, + true, + array(), + array(1, 2), array(), ), // all common |