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
The following commit(s) were added to refs/heads/main by this push:
new 06609d8f3 Remove overinstalling the timer kamelet
06609d8f3 is described below
commit 06609d8f39926cf01f88b0ec7e4d19c9ab68cf3c
Author: Jan Bouska <[email protected]>
AuthorDate: Thu Aug 4 12:33:14 2022 +0200
Remove overinstalling the timer kamelet
---
e2e/global/knative/kamelet_test.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/e2e/global/knative/kamelet_test.go
b/e2e/global/knative/kamelet_test.go
index 7c5e6abe4..5c266e0bc 100644
--- a/e2e/global/knative/kamelet_test.go
+++ b/e2e/global/knative/kamelet_test.go
@@ -42,7 +42,7 @@ func TestKameletChange(t *testing.T) {
WithNewTestNamespace(t, func(ns string) {
operatorID := "camel-k-kamelet-change"
Expect(KamelInstallWithID(operatorID,
ns).Execute()).To(Succeed())
- Expect(CreateTimerKamelet(ns, "timer-source")()).To(Succeed())
+ Expect(CreateTimerKamelet(ns,
"my-timer-source")()).To(Succeed())
Expect(CreateKnativeChannel(ns, "messages")()).To(Succeed())
Expect(KamelRunWithID(operatorID, ns, "files/display.groovy",
"-w").Execute()).To(Succeed())
@@ -50,7 +50,7 @@ func TestKameletChange(t *testing.T) {
from := corev1.ObjectReference{
Kind: "Kamelet",
APIVersion: v1alpha1.SchemeGroupVersion.String(),
- Name: "timer-source",
+ Name: "my-timer-source",
}
to := corev1.ObjectReference{