diff options
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/json.go | 2 | ||||
-rw-r--r-- | tests/functional/libbuild.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/json.go b/tests/functional/json.go index 54954f7..6a1ae81 100644 --- a/tests/functional/json.go +++ b/tests/functional/json.go @@ -29,7 +29,7 @@ func main() { os.Remove("json.db") defer os.Remove("json.db") - db, err := sql.Open("sqlite3", "json.db") + db, err := sql.Open("golite", "json.db") if err != nil { log.Fatal(err) } diff --git a/tests/functional/libbuild.go b/tests/functional/libbuild.go index 3de29ae..1b7694e 100644 --- a/tests/functional/libbuild.go +++ b/tests/functional/libbuild.go @@ -7,7 +7,7 @@ import ( ) func main() { - db, err := sql.Open("sqlite3", ":memory:") + db, err := sql.Open("golite", ":memory:") if err != nil { panic(err) } |