This is an automated email from the ASF dual-hosted git repository. tsato pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit fd0250649f0e59e86aa34014bdcd6ab4eeaa17cc Author: phantomjinx <p.g.richard...@phantomjinx.co.uk> AuthorDate: Tue Nov 1 14:36:51 2022 +0000 (e2e): Extend timeout for uninstall test * Wait a little longer to see if kamelets are successfully removed --- e2e/namespace/install/cli/uninstall_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/namespace/install/cli/uninstall_test.go b/e2e/namespace/install/cli/uninstall_test.go index 14d0686cc..514b46484 100644 --- a/e2e/namespace/install/cli/uninstall_test.go +++ b/e2e/namespace/install/cli/uninstall_test.go @@ -61,7 +61,7 @@ func TestBasicUninstall(t *testing.T) { Eventually(Configmap(ns, "camel-k-maven-settings")).Should(BeNil()) Eventually(OperatorPod(ns), TestTimeoutMedium).Should(BeNil()) - Eventually(KameletList(ns)).Should(BeEmpty()) + Eventually(KameletList(ns), TestTimeoutMedium).Should(BeEmpty()) }) }