diff --git a/.travis.yml b/.travis.yml index 1dbfb77..8fec0e8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ go: - 1.6.x - 1.7.x - 1.8.x - # - tip # sadly fails most of thw times + # - tip # sadly fails most of the times script: - go vet diff --git a/sqlmock_test.go b/sqlmock_test.go index c63ced4..fa2934d 100644 --- a/sqlmock_test.go +++ b/sqlmock_test.go @@ -367,15 +367,11 @@ func TestUnorderedPreparedQueryExecutions(t *testing.T) { mock.ExpectPrepare("SELECT (.+) FROM articles WHERE id = ?"). ExpectQuery(). WithArgs(5). - WillReturnRows( - NewRows([]string{"id", "title"}).FromCSVString("5,The quick brown fox"), - ) + WillReturnRows(NewRows([]string{"id", "title"}).FromCSVString("5,The quick brown fox")) mock.ExpectPrepare("SELECT (.+) FROM authors WHERE id = ?"). ExpectQuery(). WithArgs(1). - WillReturnRows( - NewRows([]string{"id", "title"}).FromCSVString("1,Betty B."), - ) + WillReturnRows(NewRows([]string{"id", "title"}).FromCSVString("1,Betty B.")) var id int var name string