You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ji...@apache.org on 2023/04/05 13:49:45 UTC

[camel-quarkus] 11/18: Revert "Temporarily disable dataformat integration tests due to #4662"

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

commit ea323a80314373e5020ae5af54f7add365b8cda3
Author: Zineb Bendhiba <be...@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 {