fix incorrect Consistently due to missing assignment when create a newAsyncAssertion

This commit is contained in:
carlory 2023-10-08 13:23:46 +08:00
parent d3559bf77f
commit bb02d0feba

View File

@ -212,8 +212,9 @@ func newAsyncAssertion(ctx context.Context, args []interface{}, consistently boo
args: args, args: args,
// PodStart is used as default because waiting for a pod is the // PodStart is used as default because waiting for a pod is the
// most common operation. // most common operation.
timeout: TestContext.timeouts.PodStart, timeout: TestContext.timeouts.PodStart,
interval: TestContext.timeouts.Poll, interval: TestContext.timeouts.Poll,
consistently: consistently,
} }
} }