This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit a16d5fc8c7ebf20c048872d9fb52b8909e8121d1 Author: nicolaferraro <[email protected]> AuthorDate: Wed Aug 18 16:17:43 2021 +0200 Fix #2486: add kind to kamelet binding type --- e2e/common/scale_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/common/scale_test.go b/e2e/common/scale_test.go index 0334f17..a19f2a2 100644 --- a/e2e/common/scale_test.go +++ b/e2e/common/scale_test.go @@ -128,7 +128,7 @@ func TestIntegrationScale(t *testing.T) { func TestKameletBindingScale(t *testing.T) { WithNewTestNamespace(t, func(ns string) { name := "binding" - Expect(Kamel("install", "-n", ns).Execute()).To(Succeed()) + Expect(Kamel("install", "-n", ns, "-w").Execute()).To(Succeed()) Expect(Kamel("bind", "timer-source?message=HelloBinding", "log-sink", "-n", ns, "--name", name).Execute()).To(Succeed()) Eventually(IntegrationPodPhase(ns, name), TestTimeoutLong).Should(Equal(v1.PodRunning)) Eventually(IntegrationCondition(ns, name, camelv1.IntegrationConditionReady), TestTimeoutShort).Should(Equal(v1.ConditionTrue))
