diff options
author | Igor Wiedler <igor@wiedler.ch> | 2010-09-12 00:51:27 +0200 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2010-09-12 00:51:27 +0200 |
commit | 566ddf8a4b743a6d2d308c8fed912c354372d916 (patch) | |
tree | 97bac3e9ddb6352636798ef9a359919dae7bbb4a /tests/dbal | |
parent | 4fd45adfc5717d3215aa961c83257fa19da7e570 (diff) | |
download | forums-566ddf8a4b743a6d2d308c8fed912c354372d916.tar forums-566ddf8a4b743a6d2d308c8fed912c354372d916.tar.gz forums-566ddf8a4b743a6d2d308c8fed912c354372d916.tar.bz2 forums-566ddf8a4b743a6d2d308c8fed912c354372d916.tar.xz forums-566ddf8a4b743a6d2d308c8fed912c354372d916.zip |
[ticket/9592] Remove test cases for empty IN()
They failed under SQLite because SQLite accepts empty IN() syntax.
PHPBB3-9592
Diffstat (limited to 'tests/dbal')
-rw-r--r-- | tests/dbal/dbal.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/dbal/dbal.php b/tests/dbal/dbal.php index 1cce891ca9..663323ad61 100644 --- a/tests/dbal/dbal.php +++ b/tests/dbal/dbal.php @@ -244,8 +244,9 @@ class phpbb_dbal_test extends phpbb_database_test_case array('username_clean' => 'bertie'))), // These here would throw errors and therefor $result should be false. - array('user_id', array(), false, false, false, true), - array('user_id', array(), true, false, false, true), + // Removing for now because SQLite accepts empty IN() syntax + /*array('user_id', array(), false, false, false, true), + array('user_id', array(), true, false, false, true),*/ ); } |