fix upsert log typos.

This commit is contained in:
Yoann Cerda 2018-06-09 12:49:03 +08:00 committed by Gert-Jan Timmer
parent a06d1c9512
commit 2439c84c29
1 changed files with 3 additions and 1 deletions

View File

@ -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)