Skip to content

Commit

Permalink
fix upsert log typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxlinuxien authored and gjrtimmer committed Jun 12, 2018
1 parent a06d1c9 commit 2439c84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sqlite3_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,9 @@ func TestInsert(t *testing.T) {
func TestUpsert(t *testing.T) {
_, n, _ := Version()
if !(n >= 3024000) {
t.Log("your version of sqlite3 doesn't support UPSERT featue. Version >= '3.24.0' needed. Skipping test...")
t.Log("Your version of sqlite3 doesn't support UPSERT feature.")
t.Log("Version >= '3.24.0' needed.")
t.Log("Skipping test...")
return
}
tempFilename := TempFilename(t)
Expand Down

0 comments on commit 2439c84

Please sign in to comment.