From 33dfee10f5d001232b445b6d84ad11adec046d03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Mon, 11 Jul 2022 18:26:51 +0200 Subject: [PATCH] fix pgsql/mssql/oracle missing quote --- tests/Schema/MigratorTest.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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