Skip to content

Commit 70b0b82

Browse files
authored
Merge pull request #5738 from derrabus/bugfix/sqlite-default-db-test
Enable testReturnsDatabaseNameWithoutDatabaseNameParameter for SQLite
2 parents 96b22db + f58be88 commit 70b0b82

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/Functional/Driver/PDO/SQLite/DriverTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ protected function setUp(): void
2121
self::markTestSkipped('This test requires the pdo_sqlite driver.');
2222
}
2323

24-
public function testReturnsDatabaseNameWithoutDatabaseNameParameter(): void
24+
protected static function getDatabaseNameForConnectionWithoutDatabaseNameParameter(): ?string
2525
{
26-
self::markTestSkipped('SQLite does not support the concept of a database.');
26+
return 'main';
2727
}
2828

2929
protected function createDriver(): DriverInterface

0 commit comments

Comments
 (0)