You've already forked go-sqlxmock
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:
@ -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)
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user