[ticket/9592] Remove test cases for empty IN()

They failed under SQLite because SQLite accepts empty IN() syntax.

PHPBB3-9592
This commit is contained in:
Igor Wiedler 2010-09-12 00:51:27 +02:00
parent 4fd45adfc5
commit 566ddf8a4b

View file

@ -244,8 +244,9 @@ class phpbb_dbal_test extends phpbb_database_test_case
array('username_clean' => 'bertie'))), array('username_clean' => 'bertie'))),
// These here would throw errors and therefor $result should be false. // These here would throw errors and therefor $result should be false.
array('user_id', array(), false, false, false, true), // Removing for now because SQLite accepts empty IN() syntax
array('user_id', array(), true, false, false, true), /*array('user_id', array(), false, false, false, true),
array('user_id', array(), true, false, false, true),*/
); );
} }