Skip to content

Commit a56193b

Browse files
authored
Fixed "error: wrong number of args for format in Errorf call: 2 needed but 3 args (vet)"
1 parent 2bd4083 commit a56193b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

set/dict_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func TestFlattenCaches_CacheReturn(t *testing.T) {
127127
flatten2 := set.Flatten()
128128

129129
if !reflect.DeepEqual(flatten1, flatten2) {
130-
t.Errorf(`Flatten cache is not the same as original result. Got %+v, expected %+v`, 1, flatten2, flatten1)
130+
t.Errorf(`Flatten cache is not the same as original result. Got %+v, expected %+v`, flatten2, flatten1)
131131
}
132132
}
133133

0 commit comments

Comments
 (0)