This is an automated email from the ASF dual-hosted git repository. jamesnetherton pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 74f254a5b74357317e4dd0f96205a78eb59a4711 Author: James Netherton <[email protected]> AuthorDate: Mon Feb 7 15:14:39 2022 +0000 Disable FileTest.charset on Windows due to #3530 --- .../test/java/org/apache/camel/quarkus/component/file/it/FileTest.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java b/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java index d6e06c2..3a02d19 100644 --- a/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java +++ b/integration-tests/file/src/test/java/org/apache/camel/quarkus/component/file/it/FileTest.java @@ -36,6 +36,8 @@ import io.restassured.response.ValidatableResponse; import org.hamcrest.Matchers; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.condition.DisabledOnOs; +import org.junit.jupiter.api.condition.OS; import static org.apache.camel.quarkus.component.file.it.FileResource.CONSUME_BATCH; import static org.apache.camel.quarkus.component.file.it.FileResource.SEPARATOR; @@ -80,6 +82,7 @@ class FileTest { .body(equalTo(FILE_BODY)); } + @DisabledOnOs(value = OS.WINDOWS, disabledReason = "https://github.com/apache/camel-quarkus/issues/3530") @Test public void charset() throws UnsupportedEncodingException { // Create a new file
