diff options
author | Wolfy-J <[email protected]> | 2018-01-28 14:40:11 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-01-28 14:40:11 +0300 |
commit | adba52bb949fc9a44934779560b8e1a14cff4dee (patch) | |
tree | fed9d7afb45b32a1096d40ced7eef4ef61b41411 | |
parent | ab2e23438a2ee17494ad575b62d1b092514e5545 (diff) |
no bench
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | pool_test.go | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 1ef29b64..5172bffe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,5 +20,4 @@ install: - go get -u "github.com/stretchr/testify/assert" script: - - go test -race -v - - go test -bench=. -benchmem
\ No newline at end of file + - go test -race -v
\ No newline at end of file diff --git a/pool_test.go b/pool_test.go index 0e83c83d..e02993b0 100644 --- a/pool_test.go +++ b/pool_test.go @@ -13,7 +13,7 @@ import ( var cfg = Config{ NumWorkers: uint64(runtime.NumCPU()), - AllocateTimeout: time.Minute, + AllocateTimeout: time.Second, DestroyTimeout: time.Second, } |