From bb02d0febabd18ecabd141d7025e204e2c0b0580 Mon Sep 17 00:00:00 2001 From: carlory Date: Sun, 8 Oct 2023 13:23:46 +0800 Subject: [PATCH] fix incorrect Consistently due to missing assignment when create a newAsyncAssertion --- test/e2e/framework/expect.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/e2e/framework/expect.go b/test/e2e/framework/expect.go index 5ad38f86415..3d66fca1194 100644 --- a/test/e2e/framework/expect.go +++ b/test/e2e/framework/expect.go @@ -212,8 +212,9 @@ func newAsyncAssertion(ctx context.Context, args []interface{}, consistently boo args: args, // PodStart is used as default because waiting for a pod is the // most common operation. - timeout: TestContext.timeouts.PodStart, - interval: TestContext.timeouts.Poll, + timeout: TestContext.timeouts.PodStart, + interval: TestContext.timeouts.Poll, + consistently: consistently, } }