diff options
author | Valery Piashchynski <[email protected]> | 2021-10-02 18:38:35 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-10-02 18:38:35 +0300 |
commit | 6e0b122a020fd90b7d8fd17f26bff49250a71300 (patch) | |
tree | 13592faf4cdf534a0ecb1d9f89b3ef8f9fd23032 /pool/supervisor_test.go | |
parent | 2cd9fd5cf3b734fa247701dafded853d5ef0a38d (diff) |
- Update dependencies
- Cleanup tests
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'pool/supervisor_test.go')
-rw-r--r-- | pool/supervisor_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pool/supervisor_test.go b/pool/supervisor_test.go index 032e220b..a58ad8c3 100644 --- a/pool/supervisor_test.go +++ b/pool/supervisor_test.go @@ -76,8 +76,8 @@ func TestSupervisedPool_ExecWithDebugMode(t *testing.T) { time.Sleep(time.Second) - for i := 0; i < 100; i++ { - time.Sleep(time.Millisecond * 500) + for i := 0; i < 10; i++ { + time.Sleep(time.Second) _, err = p.Exec(&payload.Payload{ Context: []byte(""), Body: []byte("foo"), |