1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-06-14 23:55:00 +02:00

Correct spelling

Signed-off-by: Gábor Lipták <gliptak@gmail.com>
This commit is contained in:
Gábor Lipták
2017-11-25 09:32:15 -05:00
parent 08090c7d68
commit 395520ee2d
8 changed files with 38 additions and 38 deletions

View File

@ -27,7 +27,7 @@ func TestShouldUpdateStats(t *testing.T) {
// we make sure that all expectations were met
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expections: %s", err)
t.Errorf("there were unfulfilled expectations: %s", err)
}
}
@ -53,6 +53,6 @@ func TestShouldRollbackStatUpdatesOnFailure(t *testing.T) {
// we make sure that all expectations were met
if err := mock.ExpectationsWereMet(); err != nil {
t.Errorf("there were unfulfilled expections: %s", err)
t.Errorf("there were unfulfilled expectations: %s", err)
}
}