1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-12-19 23:42:08 +02:00

updates travis to validate with go fmt

This commit is contained in:
gedi
2017-05-31 23:54:14 +03:00
parent d1ba2809d5
commit b2ca44a80b
4 changed files with 13 additions and 11 deletions

View File

@@ -309,9 +309,9 @@ func (c *sqlmock) prepare(query string) (*ExpectedPrepare, error) {
var expected *ExpectedPrepare
var fulfilled int
var ok bool
query = stripQuery(query)
for _, next := range c.expected {
next.Lock()
if next.fulfilled() {
@@ -328,7 +328,7 @@ func (c *sqlmock) prepare(query string) (*ExpectedPrepare, error) {
next.Unlock()
return nil, fmt.Errorf("call to Prepare statement with query '%s', was not expected, next expectation is: %s", query, next)
}
if pr, ok := next.(*ExpectedPrepare); ok {
if pr.sqlRegex.MatchString(query) {
expected = pr