diff options
author | EuAndreh <eu@euandre.org> | 2024-10-07 16:40:02 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-10-07 16:41:25 -0300 |
commit | c3a3cf9d7aed9b3c48acbe31fd48f2c27549a570 (patch) | |
tree | 9b1a6aa2cd911848ed15cc9841cb99855af88d09 /tests/functional/json.go | |
parent | Makefile: Improve spacing (diff) | |
download | golite-c3a3cf9d7aed9b3c48acbe31fd48f2c27549a570.tar.gz golite-c3a3cf9d7aed9b3c48acbe31fd48f2c27549a570.tar.xz |
Rename golite -> acudego
Diffstat (limited to 'tests/functional/json.go')
-rw-r--r-- | tests/functional/json.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/functional/json.go b/tests/functional/json.go index 6a1ae81..352a72c 100644 --- a/tests/functional/json.go +++ b/tests/functional/json.go @@ -8,7 +8,7 @@ import ( "log" "os" - _ "golite" + _ "acudego" ) type Tag struct { @@ -29,7 +29,7 @@ func main() { os.Remove("json.db") defer os.Remove("json.db") - db, err := sql.Open("golite", "json.db") + db, err := sql.Open("acudego", "json.db") if err != nil { log.Fatal(err) } |