Increase timeout for stats check

This commit is contained in:
Mike Miranda 2022-03-21 21:26:31 +00:00
parent 80746c7622
commit 44e3280799

View File

@ -411,7 +411,7 @@ func recent(d time.Duration) types.GomegaMatcher {
}, gomega.And(
gomega.BeTemporally(">=", time.Now().Add(-d)),
// Now() is the test start time, not the match time, so permit a few extra minutes.
gomega.BeTemporally("<", time.Now().Add(2*time.Minute))))
gomega.BeTemporally("<", time.Now().Add(3*time.Minute))))
}
func recordSystemCgroupProcesses() {