Commit c7709294 authored by Alexander Butenko's avatar Alexander Butenko

Fix table drop in tests

parent 3ec7818e
......@@ -94,7 +94,7 @@ function createTable ($name, $data) {
}
foreach ($tables as $name => $fields) {
$db->rawQuery("DROP TABLE $name");
$db->rawQuery("DROP TABLE ".$prefix.$name);
createTable ($prefix.$name, $fields);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment