Merge branch 'develop-olympus' into develop

* develop-olympus:
  [ticket/10088] Also ignore DBMS versions other than MySQLi in cache mock.
This commit is contained in:
Igor Wiedler 2011-03-12 18:23:47 +01:00
commit d319fe1883

View file

@ -48,7 +48,12 @@ class phpbb_mock_cache implements phpbb_cache_driver_interface
if ($ignore_db_info)
{
unset($cache_data['mssqlodbc_version']);
unset($cache_data['mssql_version']);
unset($cache_data['mysql_version']);
unset($cache_data['mysqli_version']);
unset($cache_data['pgsql_version']);
unset($cache_data['sqlite_version']);
}
$test->assertEquals($data, $cache_data);