diff options
-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, } |