Skip to content

Commit f58be88

Browse files
committed
Enable testReturnsDatabaseNameWithoutDatabaseNameParameter for SQLite
1 parent 96b22db commit f58be88

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)