aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/libbuild.go
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-10-05 03:05:35 -0300
committerEuAndreh <eu@euandre.org>2024-10-05 03:41:03 -0300
commiteee9e06364f3d83fd9d7357bdbc94c7499b56231 (patch)
treea31e334b8682f420b5fbd730b0f4129aae1584d9 /tests/functional/libbuild.go
parentMakefile: run "fuzz" in "check-integration" target (for 1 second) (diff)
downloadgolite-eee9e06364f3d83fd9d7357bdbc94c7499b56231.tar.gz
golite-eee9e06364f3d83fd9d7357bdbc94c7499b56231.tar.xz
src/golite.go: Change driverName to "golite" and make it `const`
Diffstat (limited to 'tests/functional/libbuild.go')
-rw-r--r--tests/functional/libbuild.go2
1 files changed, 1 insertions, 1 deletions
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)
}