Skip to content

Commit 47d4495

Browse files
committed
gofmt
1 parent 420ceda commit 47d4495

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assert/assert_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,14 +235,14 @@ func ExampleNotZero() {
235235
}
236236

237237
func BenchmarkMKeyExists(b *testing.B) {
238-
bs := map[int]int{0:0, 1:1}
238+
bs := map[int]int{0: 0, 1: 1}
239239
for n := 0; n < b.N; n++ {
240240
assert.MKeyExists(bs, 1)
241241
}
242242
}
243243

244244
func BenchmarkMNotEmpty(b *testing.B) {
245-
bs := map[int]int{0:0, 1:1}
245+
bs := map[int]int{0: 0, 1: 1}
246246
for n := 0; n < b.N; n++ {
247247
assert.MNotEmpty(bs)
248248
}

0 commit comments

Comments
 (0)