This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit a2a5a886319627b018c56d0a9d2b12eaa1a8f96e Author: James Netherton <[email protected]> AuthorDate: Mon Oct 25 13:52:48 2021 +0100 Disable MllpTest.testCharsetFromMsh18 due to #3225 --- .../test/java/org/apache/camel/quarkus/component/mllp/it/MllpTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/mllp/src/test/java/org/apache/camel/quarkus/component/mllp/it/MllpTest.java b/integration-tests/mllp/src/test/java/org/apache/camel/quarkus/component/mllp/it/MllpTest.java index e85f3ca..9611990 100644 --- a/integration-tests/mllp/src/test/java/org/apache/camel/quarkus/component/mllp/it/MllpTest.java +++ b/integration-tests/mllp/src/test/java/org/apache/camel/quarkus/component/mllp/it/MllpTest.java @@ -18,6 +18,7 @@ package org.apache.camel.quarkus.component.mllp.it; import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.Matchers.containsString; @@ -53,6 +54,7 @@ class MllpTest { .statusCode(204); } + @Disabled("https://github.com/apache/camel-quarkus/issues/3225") @Test public void testCharsetFromMsh18() { // Set up the message with a charset and some characters that it cannot deal with
