From 660300ebe82c4f14bda416613bb67d21b95653b8 Mon Sep 17 00:00:00 2001 From: ChristianZaccaria Date: Mon, 10 Feb 2025 12:28:26 +0000 Subject: [PATCH] Adjust test timeout on AppWrappers to decrease e2e tests duration --- test/e2e/deployment_appwrapper_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/deployment_appwrapper_test.go b/test/e2e/deployment_appwrapper_test.go index 39d953c7b..5304212af 100644 --- a/test/e2e/deployment_appwrapper_test.go +++ b/test/e2e/deployment_appwrapper_test.go @@ -153,7 +153,7 @@ func TestDeploymentAppWrapper(t *testing.T) { // A deployment will not complete; so simply make sure it keeps running for reasonable interval test.T().Logf("Ensuring the AppWrapper %s/%s continues to run", aw.Namespace, aw.Name) - test.Consistently(AppWrappers(test, namespace), TestTimeoutMedium).Should( + test.Consistently(AppWrappers(test, namespace), TestTimeoutShort).Should( ContainElement(WithTransform(AppWrapperPhase, Equal(mcadv1beta2.AppWrapperRunning)))) test.T().Logf("Deleting AppWrapper %s/%s", aw.Namespace, aw.Name)