summaryrefslogtreecommitdiff
path: root/pool_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'pool_test.go')
-rw-r--r--pool_test.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/pool_test.go b/pool_test.go
index 534ea855..88926a9b 100644
--- a/pool_test.go
+++ b/pool_test.go
@@ -8,7 +8,6 @@ import (
"sync"
"testing"
"time"
- "log"
)
var cfg = Config{
@@ -174,9 +173,8 @@ func Benchmark_Pool_Echo_Batched(b *testing.B) {
)
defer p.Destroy()
- s := time.Now()
var wg sync.WaitGroup
- for i := 0; i < b.N*10; i++ {
+ for i := 0; i < b.N; i++ {
wg.Add(1)
go func() {
defer wg.Done()
@@ -187,8 +185,6 @@ func Benchmark_Pool_Echo_Batched(b *testing.B) {
}
wg.Wait()
-
- log.Println(float64(b.N*10) / time.Now().Sub(s).Seconds())
}
func Benchmark_Pool_Echo_Replaced(b *testing.B) {