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 8aa5105c63 Test fix related to upgrade of json-schema-validator
8aa5105c63 is described below

commit 8aa5105c63a884dd6584ab85c277470480d2ee32
Author: Jiri Ondrusek <[email protected]>
AuthorDate: Thu Apr 9 14:09:06 2026 +0200

    Test fix related to upgrade of json-schema-validator
---
 .../camel/quarkus/component/json/validator/it/JsonValidatorTest.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/integration-tests/json-validator/src/test/java/org/apache/camel/quarkus/component/json/validator/it/JsonValidatorTest.java
 
b/integration-tests/json-validator/src/test/java/org/apache/camel/quarkus/component/json/validator/it/JsonValidatorTest.java
index 58e371602a..8fb76ecd6c 100644
--- 
a/integration-tests/json-validator/src/test/java/org/apache/camel/quarkus/component/json/validator/it/JsonValidatorTest.java
+++ 
b/integration-tests/json-validator/src/test/java/org/apache/camel/quarkus/component/json/validator/it/JsonValidatorTest.java
@@ -45,8 +45,8 @@ class JsonValidatorTest {
                 .then()
                 .statusCode(200)
                 .body(
-                        "[0]", is("string found, integer expected"),
-                        "[1]", is("required property 'price' not found"),
+                        "[0]", is("required property 'price' not found"),
+                        "[1]", is("string found, integer expected"),
                         "[2]", containsString("property 'unknown' is not 
defined in the schema"));
     }
 

Reply via email to