Skip to content

Commit 7ccaee2

Browse files
Merge branch '4.4' into 5.0
* 4.4: [Security/Core] Fix checking for SHA256/SHA512 passwords [Cache][Lock] fix tests bumped Symfony version to 4.4.2 updated VERSION for 4.4.1 updated CHANGELOG for 4.4.1
2 parents 527620c + 0f641ac commit 7ccaee2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tests/Store/PdoStoreTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ public function testDsn(string $dsn, string $file = null)
9797
public function provideDsn()
9898
{
9999
$dbFile = tempnam(sys_get_temp_dir(), 'sf_sqlite_cache');
100-
yield ['sqlite://localhost/'.$dbFile, ''.$dbFile];
101-
yield ['sqlite:'.$dbFile, ''.$dbFile];
102-
yield ['sqlite3:///'.$dbFile, ''.$dbFile];
100+
yield ['sqlite://localhost/'.$dbFile.'1', $dbFile.'1'];
101+
yield ['sqlite:'.$dbFile.'2', $dbFile.'2'];
102+
yield ['sqlite3:///'.$dbFile.'3', $dbFile.'3'];
103103
yield ['sqlite://localhost/:memory:'];
104104
yield ['sqlite::memory:'];
105105
}

0 commit comments

Comments
 (0)