From 44e3280799ace64b96c4ab2662ce5e7f51bfc156 Mon Sep 17 00:00:00 2001 From: Mike Miranda Date: Mon, 21 Mar 2022 21:26:31 +0000 Subject: [PATCH] Increase timeout for stats check --- test/e2e_node/summary_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/summary_test.go b/test/e2e_node/summary_test.go index 2c520def83e..31574ab06fe 100644 --- a/test/e2e_node/summary_test.go +++ b/test/e2e_node/summary_test.go @@ -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() {