1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-01-07 23:01:44 +02:00

Fixed typo (stetement -> statement)

This commit is contained in:
Omni Adams 2016-04-13 14:19:21 -05:00
parent 9958e5c69d
commit 4e7175497a
No known key found for this signature in database
GPG Key ID: 1E0F64905C03A71E

View File

@ -279,7 +279,7 @@ func (c *sqlmock) Prepare(query string) (driver.Stmt, error) {
next.Unlock()
if c.ordered {
return nil, fmt.Errorf("call to Prepare stetement with query '%s', was not expected, next expectation is: %s", query, next)
return nil, fmt.Errorf("call to Prepare statement with query '%s', was not expected, next expectation is: %s", query, next)
}
}