Skip to content

Commit

Permalink
oops
Browse files Browse the repository at this point in the history
  • Loading branch information
thrawn01 committed May 9, 2024
1 parent 51b2ce7 commit d791304
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bench/bench_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ func BenchmarkParallel(b *testing.B) {
})
}
for _, p := range benchCase {
b.Run(fmt.Sprintf("Hashi%d", p), func(b *testing.B) {
b.Run(fmt.Sprintf("Hashi_%d", p), func(b *testing.B) {
bench.HashiReadParallel(b, p)
})
}
for _, p := range benchCase {
b.Run(fmt.Sprintf("Mutex%d", p), func(b *testing.B) {
b.Run(fmt.Sprintf("Mutex_%d", p), func(b *testing.B) {
bench.MutexReadParallel(b, p)
})
}
Expand Down Expand Up @@ -66,7 +66,7 @@ func BenchmarkParallel(b *testing.B) {
// })
//}
for _, p := range benchCase {
b.Run(fmt.Sprintf("WorkerPool%d", p), func(b *testing.B) {
b.Run(fmt.Sprintf("WorkerPool_%d", p), func(b *testing.B) {
bench.WorkerPoolReadParallel(b, p)
})
}
Expand Down

0 comments on commit d791304

Please sign in to comment.