Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed Jul 18, 2024
1 parent 3939bef commit 0068946
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/PgSqlIntegration/DatabasePopulateTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public function testLoadEmptyDump(): void

/** @var PDO $pdo */
$pdo = $this->getModule('Db')->_getDbh();
$tableNames = $pdo->query('SHOW TABLES')->fetchAll(PDO::FETCH_COLUMN);
$tableNames = $pdo->query('SELECT table_name FROM information_schema.tables WHERE table_schema=\'public\' AND table_type=\'BASE TABLE\'')->fetchAll(PDO::FETCH_COLUMN);

$this->assertSame([], $tableNames);
}
Expand Down

0 comments on commit 0068946

Please sign in to comment.