Skip to content

Commit

Permalink
gofmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lainio committed Aug 22, 2024
1 parent 420ceda commit 47d4495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assert/assert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -235,14 +235,14 @@ func ExampleNotZero() {
}

func BenchmarkMKeyExists(b *testing.B) {
bs := map[int]int{0:0, 1:1}
bs := map[int]int{0: 0, 1: 1}
for n := 0; n < b.N; n++ {
assert.MKeyExists(bs, 1)
}
}

func BenchmarkMNotEmpty(b *testing.B) {
bs := map[int]int{0:0, 1:1}
bs := map[int]int{0: 0, 1: 1}
for n := 0; n < b.N; n++ {
assert.MNotEmpty(bs)
}
Expand Down

0 comments on commit 47d4495

Please sign in to comment.