1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2025-06-12 21:47:29 +02:00

Fixed some typos

This commit is contained in:
Theo
2019-02-27 19:44:03 +00:00
parent 7f7699b45e
commit 882c1d1daa
7 changed files with 13 additions and 14 deletions

View File

@ -7,7 +7,7 @@ import (
"testing"
)
func TestExpectedPreparedStatemtCloseError(t *testing.T) {
func TestExpectedPreparedStatementCloseError(t *testing.T) {
conn, mock, err := New()
if err != nil {
t.Fatal("failed to open sqlmock database:", err)
@ -28,6 +28,6 @@ func TestExpectedPreparedStatemtCloseError(t *testing.T) {
}
if err := stmt.Close(); err != want {
t.Fatalf("Got = %v, want = %v", err, want)
t.Fatalf("got = %v, want = %v", err, want)
}
}