1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2025-06-25 00:26:45 +02:00

Merge pull request #147 from gliptak/gofmt1

Gofmt sqlmock_test.go
This commit is contained in:
Gediminas Morkevicius
2018-10-21 23:12:15 +03:00
committed by GitHub

View File

@ -638,9 +638,9 @@ func TestGoroutineExecutionWithUnorderedExpectationMatching(t *testing.T) {
var wg sync.WaitGroup
queries := map[string][]interface{}{
"one": []interface{}{"one"},
"two": []interface{}{"one", "two"},
"three": []interface{}{"one", "two", "three"},
"one": {"one"},
"two": {"one", "two"},
"three": {"one", "two", "three"},
}
wg.Add(len(queries))
@ -678,9 +678,9 @@ func ExampleSqlmock_goroutines() {
var wg sync.WaitGroup
queries := map[string][]interface{}{
"one": []interface{}{"one"},
"two": []interface{}{"one", "two"},
"three": []interface{}{"one", "two", "three"},
"one": {"one"},
"two": {"one", "two"},
"three": {"one", "two", "three"},
}
wg.Add(len(queries))