diff --git a/tests/Schema/MigratorTest.php b/tests/Schema/MigratorTest.php index 8228a77e38..3f51addcdd 100644 --- a/tests/Schema/MigratorTest.php +++ b/tests/Schema/MigratorTest.php @@ -35,7 +35,8 @@ protected function createDemoMigrator(string $table): Migrator protected function isTableExist(string $table): bool { - return $this->createSchemaManager()->tablesExist([$table]); + return $this->createSchemaManager() + ->tablesExist([$this->getDatabasePlatform()->quoteSingleIdentifier($table)]); } public function testCreate(): void