Skip to content

Commit

Permalink
Merge pull request #26 from remicollet/patch-2
Browse files Browse the repository at this point in the history
Minimal fix for sqlite3
  • Loading branch information
schengawegga committed Jan 17, 2024
2 parents e2f6076 + d27b705 commit a01ac85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/driver/setup.inc
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ $dsns = array(
// 'db2' => 'odbc(db2)://db2inst1:XXXX@/SAMPLE',
// 'pgsql' => 'pgsql://postgres@localhost/test',
// 'sqlite' => 'sqlite://dummy:@localhost/' . getcwd() . DIRECTORY_SEPARATOR . 'test.db?mode=0644',
// 'sqlite3' => 'sqlite://dummy:@localhost/' . getcwd() . DIRECTORY_SEPARATOR . 'test.db?mode=0644',
// 'sqlite3' => 'sqlite3://dummy:@localhost/' . getcwd() . DIRECTORY_SEPARATOR . 'test.db?mode=0644',
);

if (getenv('MYSQL_TEST_USER') !== '') {
if (getenv('MYSQL_TEST_USER')) {
$dsns['mysqli'] = array(
'phptype' => 'mysqli',
'username' => getenv('MYSQL_TEST_USER'),
Expand Down

0 comments on commit a01ac85

Please sign in to comment.