MDL-46327 phpunit: Fixed oracle fail

This commit is contained in:
Rajesh Taneja 2014-08-15 16:37:12 +08:00
parent 38a5c6861e
commit c1dc3f4793

View File

@ -1608,6 +1608,11 @@ class core_ddl_testcase extends database_driver_testcase {
JOIN {test_temp} t ON t.name = n.name";
$records = $DB->get_records_sql($sql);
$this->assertCount(1, $records);
// Drop temp table.
$dbman->drop_temp_table($table2);
$this->assertFalse($dbman->table_exists('test_temp'));
$this->assertDebuggingCalled();
}
public function test_concurrent_temp_tables() {