diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2015-11-02 11:56:49 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2015-11-02 11:56:49 +0900 |
commit | 59f20de728c91fc2a6593419074299398d8358b4 (patch) | |
tree | 83e6e5ace0a26960322c41f908616ba1387c8e18 /sqlite3_test.go | |
parent | Merge branch 'pr/207' (diff) | |
download | golite-59f20de728c91fc2a6593419074299398d8358b4.tar.gz golite-59f20de728c91fc2a6593419074299398d8358b4.tar.xz |
fix tests
Diffstat (limited to 'sqlite3_test.go')
-rw-r--r-- | sqlite3_test.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sqlite3_test.go b/sqlite3_test.go index 90bee51..22b9c21 100644 --- a/sqlite3_test.go +++ b/sqlite3_test.go @@ -13,7 +13,6 @@ import ( "io/ioutil" "net/url" "os" - "path/filepath" "reflect" "regexp" "strings" @@ -796,7 +795,7 @@ func TestTimezoneConversion(t *testing.T) { } func TestSuite(t *testing.T) { - tempFilename := TempFilename() + tempFilename := TempFilename(t) db, err := sql.Open("sqlite3", tempFilename+"?_busy_timeout=99999") if err != nil { t.Fatal(err) |