1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2025-06-24 21:56:48 +02:00

added tests

This commit is contained in:
Nikita Koryabkin
2019-12-03 13:46:20 +03:00
parent 5a7ddb9845
commit 5dc976bc43
2 changed files with 43 additions and 1 deletions

View File

@ -1250,7 +1250,7 @@ func Test_sqlmock_Prepare_and_Exec(t *testing.T) {
return
}
if !reflect.DeepEqual(result, expected) {
t.Errorf("Eesults not equal. Expected: %v, Actual: %v", expected, result)
t.Errorf("Results are not equal. Expected: %v, Actual: %v", expected, result)
return
}
rows, err := got.Query([]driver.Value{"test"})