You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2022/10/13 06:14:48 UTC

[camel-quarkus] 03/03: Revert "Disable XStream native tests due to #4149"

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 c7769244aa2ce5872cb5eaa4a52fe76e447f5754
Author: James Netherton <ja...@gmail.com>
AuthorDate: Wed Oct 12 16:18:16 2022 +0100

    Revert "Disable XStream native tests due to #4149"
    
    This reverts commit 2f24671fe4541c0bc0e81d500004e26e5c95396c.
    
    Fixes #4149
---
 .../java/org/apache/camel/quarkus/component/xstream/it/XstreamTest.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/integration-tests/xstream/src/test/java/org/apache/camel/quarkus/component/xstream/it/XstreamTest.java b/integration-tests/xstream/src/test/java/org/apache/camel/quarkus/component/xstream/it/XstreamTest.java
index e9187ffdbf..6e3e5763c8 100644
--- a/integration-tests/xstream/src/test/java/org/apache/camel/quarkus/component/xstream/it/XstreamTest.java
+++ b/integration-tests/xstream/src/test/java/org/apache/camel/quarkus/component/xstream/it/XstreamTest.java
@@ -18,7 +18,6 @@ package org.apache.camel.quarkus.component.xstream.it;
 
 import javax.json.bind.JsonbBuilder;
 
-import io.quarkus.test.junit.DisabledOnIntegrationTest;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import io.restassured.http.ContentType;
@@ -30,7 +29,6 @@ import static org.hamcrest.Matchers.equalTo;
 @QuarkusTest
 class XstreamTest {
 
-    @DisabledOnIntegrationTest("https://github.com/apache/camel-quarkus/issues/4149")
     @Test
     void xstream() {
         final String xml = "<org.apache.camel.quarkus.component.xstream.it.PojoA><name>Joe</name></org.apache.camel.quarkus.component.xstream.it.PojoA>";