mirror of https://github.com/mattn/go-sqlite3.git
Merge pull request #286 from y0za/fix-testing-message
Fix testing message at TestInsert and TestUpdate
This commit is contained in:
commit
1f1995912c
|
@ -168,7 +168,7 @@ func TestInsert(t *testing.T) {
|
|||
var result int
|
||||
rows.Scan(&result)
|
||||
if result != 123 {
|
||||
t.Errorf("Fetched %q; expected %q", 123, result)
|
||||
t.Errorf("Expected %d for fetched result, but %d:", 123, result)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -233,7 +233,7 @@ func TestUpdate(t *testing.T) {
|
|||
var result int
|
||||
rows.Scan(&result)
|
||||
if result != 234 {
|
||||
t.Errorf("Fetched %q; expected %q", 234, result)
|
||||
t.Errorf("Expected %d for fetched result, but %d:", 234, result)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue