diff options
author | brunoais <brunoaiss@gmail.com> | 2015-03-16 11:31:51 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2015-03-17 20:31:26 +0000 |
commit | 576eaa0cff7a5e051aa672034e596e90f65fc1a9 (patch) | |
tree | 47254eb48728b4a7cbe4fe9f86b49918958cbc77 /tests/dbal | |
parent | [feature/sql-bool-builder] test_single_not_like (diff) | |
download | phpbb-576eaa0cff7a5e051aa672034e596e90f65fc1a9.tar.gz phpbb-576eaa0cff7a5e051aa672034e596e90f65fc1a9.tar.bz2 phpbb-576eaa0cff7a5e051aa672034e596e90f65fc1a9.zip |
[feature/sql-bool-builder] Adding the IS operator to predicted operators
PHPBB3-13652
Diffstat (limited to 'tests/dbal')
-rw-r--r-- | tests/dbal/boolean_processor_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/dbal/boolean_processor_test.php b/tests/dbal/boolean_processor_test.php index 2ba3f6ff22..5e044797f8 100644 --- a/tests/dbal/boolean_processor_test.php +++ b/tests/dbal/boolean_processor_test.php @@ -153,7 +153,7 @@ class phpbb_boolean_processor_test extends phpbb_database_test_case ), array('AND', array('ug.group_id', '=', 1), - array('b.ban_id', 'IS NOT', NULL), + array('b.ban_id', 'IS_NOT', NULL), ), ), array('u.user_id', '=', 'ug.user_id'), |