Skip to content

Commit

Permalink
Fix condition in PostgreSQL only test
Browse files Browse the repository at this point in the history
  • Loading branch information
HypeMC committed Aug 17, 2022
1 parent 94e0164 commit e95e5cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Functional/Ticket/DBAL168Test.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class DBAL168Test extends FunctionalTestCase
{
public function testDomainsTable(): void
{
if ($this->connection->getDatabasePlatform() instanceof PostgreSQLPlatform) {
if (! $this->connection->getDatabasePlatform() instanceof PostgreSQLPlatform) {
self::markTestSkipped('PostgreSQL only test');
}

Expand Down

0 comments on commit e95e5cc

Please sign in to comment.