Fix test broken by invalid test parameters

This commit is contained in:
Timothy Warren 2014-02-18 19:45:08 -05:00
parent 96f55f2ef5
commit 0b6a3aeef5
1 changed files with 1 additions and 3 deletions

View File

@ -26,7 +26,6 @@ class MySQLQBTest extends QBTest {
$params = json_decode(file_get_contents(QTEST_DIR . "/settings.json"));
$params = $params->mysql;
$params->type = "MySQL";
//$params->prefix = "create_";
$params->options = array();
$params->options[PDO::ATTR_PERSISTENT] = TRUE;
}
@ -38,8 +37,7 @@ class MySQLQBTest extends QBTest {
'database' => 'test',
'user' => 'root',
'pass' => NULL,
'type' => 'mysql',
'prefix' => 'create_'
'type' => 'mysql'
);
}