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 2023/12/19 16:25:22 UTC

(camel-k) 05/05: fix(camel): file components does not like .

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 c06e4786d59cf7f5b6fa48a6a27e6c9b6ae2d196
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Dec 19 16:02:02 2023 +0100

    fix(camel): file components does not like .
---
 e2e/builder/build_test.go                    | 2 +-
 e2e/common/misc/registry_maven_wagon_test.go | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/e2e/builder/build_test.go b/e2e/builder/build_test.go
index 0dbc54d81..f449f0ef2 100644
--- a/e2e/builder/build_test.go
+++ b/e2e/builder/build_test.go
@@ -305,7 +305,7 @@ func TestKitKnativeFullBuild(t *testing.T) {
 }
 
 func TestKitTimerToLogFullNativeBuild(t *testing.T) {
-	doKitFullBuild(t, "timer-to-log", "30m0s", TestTimeoutLong*3, kitOptions{
+	doKitFullBuild(t, "timer-to-log", "15m0s", TestTimeoutLong*3, kitOptions{
 		dependencies: []string{
 			"camel:timer", "camel:log",
 		},
diff --git a/e2e/common/misc/registry_maven_wagon_test.go b/e2e/common/misc/registry_maven_wagon_test.go
index 8f2217b65..0d54a48af 100644
--- a/e2e/common/misc/registry_maven_wagon_test.go
+++ b/e2e/common/misc/registry_maven_wagon_test.go
@@ -70,7 +70,7 @@ func TestImageRegistryIsAMavenRepository(t *testing.T) {
 
 		Expect(KamelRunWithID(operatorID, ns, "files/registry/LaughingRoute.java",
 			"--name", name,
-			"-p", "location=.?filename=laugh.txt",
+			"-p", "location=/deployments/?filename=laugh.txt",
 			"-d", "file://files/registry/laugh.txt",
 		).Execute()).To(Succeed())