Fix TestDB.

This commit is contained in:
Nuno Cruces
2025-09-26 16:25:15 +01:00
parent 5cf06c45f7
commit e5bd10a1ff
18 changed files with 82 additions and 80 deletions

View File

@@ -133,9 +133,9 @@ func TestTimeFormat_Decode(t *testing.T) {
func TestTimeFormat_Scanner(t *testing.T) {
t.Parallel()
tmp := memdb.TestDB(t)
dsn := memdb.TestDB(t)
db, err := driver.Open(tmp)
db, err := driver.Open(dsn)
if err != nil {
t.Fatal(err)
}