This is an automated email from the ASF dual-hosted git repository. aldettinger pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
The following commit(s) were added to refs/heads/main by this push: new 5d35f2176f file: experiment disabling filter test #3584 5d35f2176f is described below commit 5d35f2176f04cc8ca95171d3fb4adfc637cea04e Author: aldettinger <aldettin...@gmail.com> AuthorDate: Wed Aug 24 11:57:21 2022 +0200 file: experiment disabling filter test #3584 --- .../test/java/org/apache/camel/quarkus/component/file/it/FileTest.java | 2 ++ 1 file changed, 2 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 a28005535b..8bd44c71e6 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 @@ -37,6 +37,7 @@ import io.restassured.response.ValidatableResponse; import org.apache.camel.quarkus.core.util.FileUtils; import org.hamcrest.Matchers; import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.apache.camel.quarkus.component.file.it.FileResource.CONSUME_BATCH; @@ -148,6 +149,7 @@ class FileTest { equalTo(FILE_CONTENT_02)); } + @Disabled("Disabling as an experiment in the context of CAMEL-QUARKUS-3584. Let's check whether filter and idempotent are sort of polluting each other.") @Test public void filter() throws IOException { String fileName = createFile(FILE_CONTENT_01, "/file/create/filter", null, "skip_" + UUID.randomUUID().toString());