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

@@ -88,9 +88,9 @@ func Example() {
func Test_cursor_Column(t *testing.T) {
t.Parallel()
tmp := memdb.TestDB(t)
dsn := memdb.TestDB(t)
db, err := driver.Open(tmp, array.Register)
db, err := driver.Open(dsn, array.Register)
if err != nil {
t.Fatal(err)
}