Skip to content

Commit bf2c22e

Browse files
committed
[Messenger] Remove unused assertion from valid procedure name test
1 parent d9e5deb commit bf2c22e

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/Symfony/Component/Messenger/Bridge/Doctrine/Tests/Transport/PostgreSqlConnectionTest.php

-4
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,6 @@ public function testTransformTableNameWithSchemaToValidProcedureName()
6868
$sql = implode("\n", $connection->getExtraSetupSqlForTable($table));
6969

7070
$this->assertStringContainsString('CREATE OR REPLACE FUNCTION notify_schema_queue_table', $sql);
71-
72-
// We MUST NOT use transaction, that will mess with the PDO in PHP 8
73-
$this->assertStringNotContainsString('BEGIN;', $sql);
74-
$this->assertStringNotContainsString('COMMIT;', $sql);
7571
}
7672

7773
public function testGetExtraSetupSqlWrongTable()

0 commit comments

Comments
 (0)