From eee9e06364f3d83fd9d7357bdbc94c7499b56231 Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sat, 5 Oct 2024 03:05:35 -0300 Subject: src/golite.go: Change driverName to "golite" and make it `const` --- tests/functional/json.go | 2 +- tests/functional/libbuild.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/functional') 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) } -- cgit v1.2.3