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

Merge pull request #41 from omnicolor/fix-typo

Fixed typo (stetement -> statement)
This commit is contained in:
Gediminas Morkevicius
2016-04-14 09:08:51 +03:00

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)
}
}