This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 8080c9d254422e65adefec6fcf0a426820a9e832 Author: JiriOndrusek <ondrusek.j...@gmail.com> AuthorDate: Tue Aug 29 11:02:43 2023 +0200 fixed foundation/core tests --- .../core/src/test/java/org/apache/camel/quarkus/core/CoreTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-test-groups/foundation/core/src/test/java/org/apache/camel/quarkus/core/CoreTest.java b/integration-test-groups/foundation/core/src/test/java/org/apache/camel/quarkus/core/CoreTest.java index af267981a3..bd7cc598b6 100644 --- a/integration-test-groups/foundation/core/src/test/java/org/apache/camel/quarkus/core/CoreTest.java +++ b/integration-test-groups/foundation/core/src/test/java/org/apache/camel/quarkus/core/CoreTest.java @@ -120,7 +120,7 @@ public class CoreTest { @Test void testCustomBeanWithConstructorParameterInjection() { RestAssured.when().get("/core/custom-bean-with-constructor-parameter-injection").then() - .body(is("localhost:2121|scott|tiger")); + .body(is("\"localhost:2121\"|\"scott\"|\"tiger\"")); } @Test