You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/08/31 07:25:32 UTC

[camel-quarkus] 04/14: fixed foundation/core tests

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

commit f384fb9162ebd73a9ae3a0a5fc862d1848c56d96
Author: JiriOndrusek <on...@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