summaryrefslogtreecommitdiff
path: root/static_pool_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'static_pool_test.go')
-rwxr-xr-xstatic_pool_test.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/static_pool_test.go b/static_pool_test.go
index f8478e14..cbbae07a 100755
--- a/static_pool_test.go
+++ b/static_pool_test.go
@@ -174,7 +174,18 @@ func Test_StaticPool_Broken_Replace(t *testing.T) {
wg := &sync.WaitGroup{}
wg.Add(1)
+ // force test to finish
+ tt := time.NewTimer(time.Second * 20)
+ go func() {
+ select {
+ case <-tt.C:
+ tt.Stop()
+ wg.Done()
+ }
+ }()
+
time.Sleep(time.Second)
+
workers := p.Workers()
for i := 0; i < len(workers); i++ {
workers[i].AddListener(func(event interface{}) {
@@ -194,6 +205,7 @@ func Test_StaticPool_Broken_Replace(t *testing.T) {
assert.Nil(t, res.Body)
wg.Wait()
+ tt.Stop()
p.Destroy(ctx)
}