You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2022/03/01 14:34:47 UTC

[camel-k] 08/18: fix(e2e): remove Kit

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit ff6e06e756b4648e111d6ab2bce9cb2fd5b2984b
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Jan 25 10:20:17 2022 +0100

    fix(e2e): remove Kit
---
 e2e/common/cli/get_test.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/e2e/common/cli/get_test.go b/e2e/common/cli/get_test.go
index f9203d3..feb3b7c 100644
--- a/e2e/common/cli/get_test.go
+++ b/e2e/common/cli/get_test.go
@@ -42,7 +42,7 @@ func TestKamelCLIGet(t *testing.T) {
 			Eventually(IntegrationPodPhase(ns, "yaml"), TestTimeoutMedium).Should(Equal(corev1.PodRunning))
 			// regex is used for the compatibility of tests between OC and vanilla K8
 			// kamel get may have different output depending og the platform
-			kitName := Integration(ns, "yaml")().Status.Kit
+			kitName := Integration(ns, "yaml")().Status.IntegrationKit.Name
 			regex := fmt.Sprintf("^NAME\tPHASE\tKIT\n\\s*yaml\tRunning\t(%s/%s|%s)", ns, kitName, kitName)
 			Expect(GetOutputString(Kamel("get", "-n", ns))).To(MatchRegexp(regex))