This is an automated email from the ASF dual-hosted git repository. github-bot pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit bcab0a9a436681f04677af32a071e9ec2e9933b4 Author: Zineb Bendhiba <bendhiba.zi...@gmail.com> AuthorDate: Tue Mar 28 14:09:26 2023 +0200 Revert "Temporarily disable dataformat integration tests due to #4662" This reverts commit 18159898d10df121db50bf35296b5043c76dbf8e. Fixes #4662 --- integration-tests/dataformat/pom.xml | 2 -- .../org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java | 2 -- .../apache/camel/quarkus/component/dataformat/it/DataformatTest.java | 2 -- 3 files changed, 6 deletions(-) diff --git a/integration-tests/dataformat/pom.xml b/integration-tests/dataformat/pom.xml index db9224d215..4929793f54 100644 --- a/integration-tests/dataformat/pom.xml +++ b/integration-tests/dataformat/pom.xml @@ -67,7 +67,6 @@ <profiles> - <!-- TODO: https://github.com/apache/camel-quarkus/issues/4662 <profile> <id>native</id> <activation> @@ -95,7 +94,6 @@ </plugins> </build> </profile> - --> <profile> <id>virtualDependencies</id> <activation> diff --git a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java index 59b391c096..8676954dce 100644 --- a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java +++ b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatIT.java @@ -17,9 +17,7 @@ package org.apache.camel.quarkus.component.dataformat.it; import io.quarkus.test.junit.QuarkusIntegrationTest; -import org.junit.jupiter.api.Disabled; -@Disabled("https://github.com/apache/camel-quarkus/issues/4662") @QuarkusIntegrationTest class DataformatIT extends DataformatTest { diff --git a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java index 6b57eb634b..5556571bfa 100644 --- a/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java +++ b/integration-tests/dataformat/src/test/java/org/apache/camel/quarkus/component/dataformat/it/DataformatTest.java @@ -29,14 +29,12 @@ import io.quarkus.test.junit.QuarkusTest; import io.restassured.RestAssured; import org.apache.commons.io.IOUtils; import org.junit.jupiter.api.Assertions; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.MethodSource; import static org.hamcrest.CoreMatchers.equalTo; -@Disabled("https://github.com/apache/camel-quarkus/issues/4662") @QuarkusTest class DataformatTest {