File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -638,9 +638,9 @@ func TestGoroutineExecutionWithUnorderedExpectationMatching(t *testing.T) {
638638
639639 var wg sync.WaitGroup
640640 queries := map [string ][]interface {}{
641- "one" : [] interface {} {"one" },
642- "two" : [] interface {} {"one" , "two" },
643- "three" : [] interface {} {"one" , "two" , "three" },
641+ "one" : {"one" },
642+ "two" : {"one" , "two" },
643+ "three" : {"one" , "two" , "three" },
644644 }
645645
646646 wg .Add (len (queries ))
@@ -678,9 +678,9 @@ func ExampleSqlmock_goroutines() {
678678
679679 var wg sync.WaitGroup
680680 queries := map [string ][]interface {}{
681- "one" : [] interface {} {"one" },
682- "two" : [] interface {} {"one" , "two" },
683- "three" : [] interface {} {"one" , "two" , "three" },
681+ "one" : {"one" },
682+ "two" : {"one" , "two" },
683+ "three" : {"one" , "two" , "three" },
684684 }
685685
686686 wg .Add (len (queries ))
You can’t perform that action at this time.
0 commit comments