This is an automated email from the ASF dual-hosted git repository.
gfournier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git
The following commit(s) were added to refs/heads/main by this push:
new 7b4fa3d8d fix(e2e): Kamelet in route logs
7b4fa3d8d is described below
commit 7b4fa3d8d079a980a337780355ce4c1910f562c2
Author: Gaelle Fournier <[email protected]>
AuthorDate: Tue Aug 20 12:23:26 2024 +0200
fix(e2e): Kamelet in route logs
---
e2e/common/traits/kamelet_test.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/e2e/common/traits/kamelet_test.go
b/e2e/common/traits/kamelet_test.go
index b5515a6c7..72f636b8d 100644
--- a/e2e/common/traits/kamelet_test.go
+++ b/e2e/common/traits/kamelet_test.go
@@ -54,7 +54,7 @@ func TestKameletTrait(t *testing.T) {
g.Expect(KamelRun(t, ctx, ns, "files/webhook.yaml",
"--name", name).Execute()).To(Succeed())
g.Eventually(IntegrationPodPhase(t, ctx, ns, name),
TestTimeoutLong).Should(Equal(corev1.PodRunning))
g.Eventually(IntegrationConditionStatus(t, ctx, ns,
name, v1.IntegrationConditionReady),
TestTimeoutShort).Should(Equal(corev1.ConditionTrue))
- g.Eventually(IntegrationLogs(t, ctx, ns, name),
TestTimeoutShort).Should(ContainSubstring("Started
capabilities-webhook-source-1 (platform-http:///webhook)"))
+ g.Eventually(IntegrationLogs(t, ctx, ns, name),
TestTimeoutShort).Should(ContainSubstring("Started route1
(kamelet://capabilities-webhook-source)"))
// Verify Integration capabilities
g.Eventually(IntegrationStatusCapabilities(t, ctx, ns,
name), TestTimeoutShort).Should(ContainElements("platform-http"))
// Verify expected resources from Kamelet (Service in
this case)