1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-05 05:02:44 +02:00

tables with invalid value

This commit is contained in:
Cameron 2019-02-13 11:39:13 -08:00
parent edbb0a6ee2
commit eb9ed77b0f

View File

@ -790,6 +790,9 @@
$list = $this->db->db_TableList('lan');
$this->assertEmpty($list);
$list = $this->db->db_TableList('invalid');
$this->assertEmpty($list);
}
public function testTables()