diff --git a/tests/Functional/Schema/PostgreSQL/SchemaTest.php b/tests/Functional/Schema/PostgreSQL/SchemaTest.php index 0156984c89f..55a08fccd05 100644 --- a/tests/Functional/Schema/PostgreSQL/SchemaTest.php +++ b/tests/Functional/Schema/PostgreSQL/SchemaTest.php @@ -29,7 +29,10 @@ public function testCreateTableWithSequenceInColumnDefinition(): void $this->connection->executeStatement($sql); } - $result = $this->connection->fetchAssociative('SELECT column_default FROM information_schema.columns WHERE table_name = ?', ['my_table']); + $result = $this->connection->fetchAssociative( + 'SELECT column_default FROM information_schema.columns WHERE table_name = ?', + ['my_table'] + ); $this->assertNotFalse($result); $this->assertEquals('nextval(\'my_table_id_seq\'::regclass)', $result['column_default']);