Update timeout on test

pull/9301/head
Edd Robinson 2018-01-11 11:41:30 +00:00
parent ed8b9925c8
commit ecef790574
1 changed files with 2 additions and 2 deletions

View File

@ -1532,8 +1532,8 @@ func TestEngine_DisableEnableCompactions_Concurrent(t *testing.T) {
// Wait for waitgroup or fail if it takes too long.
select {
case <-time.NewTimer(10 * time.Second).C:
t.Fatalf("timed out after 10 seconds waiting for waitgroup")
case <-time.NewTimer(30 * time.Second).C:
t.Fatalf("timed out after 30 seconds waiting for waitgroup")
case <-done:
}
})