This is an automated email from the ASF dual-hosted git repository.
jiriondrusek pushed a commit to branch camel-main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/camel-main by this push:
new bb30cbc03b Disabled kamelet.pipe, as it seems o be the unexpected
result of fix in Camel
bb30cbc03b is described below
commit bb30cbc03b28ab00b71f62d963bff4299d758335
Author: Jiri Ondrusek <[email protected]>
AuthorDate: Mon Oct 13 14:59:43 2025 +0200
Disabled kamelet.pipe, as it seems o be the unexpected result of fix in
Camel
---
.../org/apache/camel/quarkus/component/kamelet/it/KameletTest.java | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/integration-tests/kamelet/src/test/java/org/apache/camel/quarkus/component/kamelet/it/KameletTest.java
b/integration-tests/kamelet/src/test/java/org/apache/camel/quarkus/component/kamelet/it/KameletTest.java
index 0bc8d3744b..009fcd87ce 100644
---
a/integration-tests/kamelet/src/test/java/org/apache/camel/quarkus/component/kamelet/it/KameletTest.java
+++
b/integration-tests/kamelet/src/test/java/org/apache/camel/quarkus/component/kamelet/it/KameletTest.java
@@ -19,6 +19,7 @@ package org.apache.camel.quarkus.component.kamelet.it;
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
+import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import static org.hamcrest.Matchers.is;
@@ -102,12 +103,13 @@ class KameletTest {
.body(is("Hello World"));
}
+ @Disabled //https://github.com/apache/camel-quarkus/issues/7826
@Test
public void pipe() {
RestAssured.get("/kamelet/pipe")
.then()
.statusCode(200)
- .body(is("Hello+Pipe"));
+ .body(is("Hello Pipe"));
}
@Test