diff options
author | mattn <mattn.jp@gmail.com> | 2014-08-21 09:56:28 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2014-08-21 09:56:28 +0900 |
commit | abd3d9caef4548682a279b60c859c197a1b32a47 (patch) | |
tree | 1d27931d6bed79faf4622e376ae79cbcbeea37f2 | |
parent | Fixed checking parameter count (diff) | |
parent | Fix for sqlite3_test import. (diff) | |
download | golite-abd3d9caef4548682a279b60c859c197a1b32a47.tar.gz golite-abd3d9caef4548682a279b60c859c197a1b32a47.tar.xz |
Merge pull request #140 from pblaszczyk/patch-1
Fix for sqlite3_test import.
-rw-r--r-- | sqlite3_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3_test.go b/sqlite3_test.go index 581d289..9cc5a0e 100644 --- a/sqlite3_test.go +++ b/sqlite3_test.go @@ -14,7 +14,7 @@ import ( "testing" "time" - "./sqlite3_test" + "github.com/mattn/go-sqlite3/sqlite3_test" ) func TempFilename() string { |