1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2024-11-21 17:17:08 +02:00

add missing closing curly brace

This commit is contained in:
Neenad Ingole 2024-08-12 21:02:09 +02:00 committed by GitHub
parent 52e994a59c
commit f3575cd527
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -145,4 +145,5 @@ func TestQueryWillReturnsNil(t *testing.T) {
_, err = mock.(*sqlmock).Query(query, []driver.Value{"test"})
if err != nil {
t.Error(err)
}
}