diff options
author | EuAndreh <eu@euandre.org> | 2024-10-05 03:05:35 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-05 03:41:03 -0300 |
commit | eee9e06364f3d83fd9d7357bdbc94c7499b56231 (patch) | |
tree | a31e334b8682f420b5fbd730b0f4129aae1584d9 /tests/functional/json.go | |
parent | Makefile: run "fuzz" in "check-integration" target (for 1 second) (diff) | |
download | golite-eee9e06364f3d83fd9d7357bdbc94c7499b56231.tar.gz golite-eee9e06364f3d83fd9d7357bdbc94c7499b56231.tar.xz |
src/golite.go: Change driverName to "golite" and make it `const`
Diffstat (limited to 'tests/functional/json.go')
-rw-r--r-- | tests/functional/json.go | 2 |
1 files changed, 1 insertions, 1 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) } |