We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 420ceda commit 47d4495Copy full SHA for 47d4495
assert/assert_test.go
@@ -235,14 +235,14 @@ func ExampleNotZero() {
235
}
236
237
func BenchmarkMKeyExists(b *testing.B) {
238
- bs := map[int]int{0:0, 1:1}
+ bs := map[int]int{0: 0, 1: 1}
239
for n := 0; n < b.N; n++ {
240
assert.MKeyExists(bs, 1)
241
242
243
244
func BenchmarkMNotEmpty(b *testing.B) {
245
246
247
assert.MNotEmpty(bs)
248
0 commit comments