Bump timeout in TestManager_BasicLifecycle (#6030)

This commit is contained in:
Pierre Souchay 2019-07-02 01:02:00 +02:00 committed by Freddy
parent ffa29d2cc3
commit 2e9370ba11
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ func assertWatchChanRecvs(t *testing.T, ch <-chan *ConfigSnapshot, expect *Confi
if expect == nil {
require.False(t, ok, "watch chan should be closed")
}
case <-time.After(50*time.Millisecond + coalesceTimeout):
case <-time.After(100*time.Millisecond + coalesceTimeout):
t.Fatal("recv timeout")
}
}