Merge pull request #121051 from carlory/cleanup-e2e-apps-framework-equal

fix incorrect Consistently due to missing assignment when create a newAsyncAssertion
This commit is contained in:
Kubernetes Prow Robot 2023-10-08 21:53:52 +02:00 committed by GitHub
commit 3fc8c32425
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
}
}