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_fts3_test.go | |
parent | Merge branch 'pr/207' (diff) | |
download | golite-59f20de728c91fc2a6593419074299398d8358b4.tar.gz golite-59f20de728c91fc2a6593419074299398d8358b4.tar.xz |
fix tests
Diffstat (limited to 'sqlite3_fts3_test.go')
-rw-r--r-- | sqlite3_fts3_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3_fts3_test.go b/sqlite3_fts3_test.go index beb5ada..87b4db8 100644 --- a/sqlite3_fts3_test.go +++ b/sqlite3_fts3_test.go @@ -83,7 +83,7 @@ func TestFTS3(t *testing.T) { } func TestFTS4(t *testing.T) { - tempFilename := TempFilename() + tempFilename := TempFilename(t) db, err := sql.Open("sqlite3", tempFilename) if err != nil { t.Fatal("Failed to open database:", err) |