1
0
mirror of https://github.com/zhashkevych/go-sqlxmock.git synced 2024-11-24 08:12:13 +02:00

Gofmt sqlmock_test.go

Signed-off-by: Gábor Lipták <gliptak@gmail.com>
This commit is contained in:
Gábor Lipták 2018-10-20 15:47:45 -04:00
parent d4b2bccf3e
commit c6bf1c0f76
No known key found for this signature in database
GPG Key ID: 8551785584B8BFFD

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