You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ts...@apache.org on 2022/08/31 04:30:35 UTC

[camel-k] branch release-1.9.x updated: Remove overinstalling the timer kamelet

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

tsato pushed a commit to branch release-1.9.x
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/release-1.9.x by this push:
     new 821ef90a5 Remove overinstalling the timer kamelet
821ef90a5 is described below

commit 821ef90a5175a998df971e19a25f9526fc01ef3b
Author: Jan Bouska <jb...@redhat.com>
AuthorDate: Mon Aug 29 15:41:25 2022 +0200

    Remove overinstalling the timer kamelet
---
 e2e/knative/kamelet_test.go | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/e2e/knative/kamelet_test.go b/e2e/knative/kamelet_test.go
index 1c25cfb51..13f94ce17 100644
--- a/e2e/knative/kamelet_test.go
+++ b/e2e/knative/kamelet_test.go
@@ -41,7 +41,7 @@ import (
 func TestKameletChange(t *testing.T) {
 	WithNewTestNamespace(t, func(ns string) {
 		Expect(Kamel("install", "-n", 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(Kamel("run", "-n", ns, "files/display.groovy", "-w").Execute()).To(Succeed())
@@ -49,7 +49,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{