This is an automated email from the ASF dual-hosted git repository. zbendhiba pushed a commit to branch camel-main in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit aa1d12f44d6b50ad5fc4ef21eff0d1cc04c72d64 Author: James Netherton <[email protected]> AuthorDate: Fri Apr 30 09:46:44 2021 +0100 Adapt MicroProfile Health to Camel 3.10 Fixes #2521 --- .../component/microprofile/it/health/MicroProfileHealthTest.java | 2 -- .../quarkus/component/microprofile/it/health/MicroprofileHealthIT.java | 2 -- 2 files changed, 4 deletions(-) diff --git a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java index ac27237..b8d2834 100644 --- a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java +++ b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroProfileHealthTest.java @@ -24,14 +24,12 @@ import io.restassured.RestAssured; import io.restassured.http.ContentType; import io.restassured.path.json.JsonPath; import org.awaitility.Awaitility; -import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static org.hamcrest.Matchers.containsInAnyOrder; import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.is; -@Disabled("https://github.com/apache/camel-quarkus/issues/2521") @QuarkusTest class MicroProfileHealthTest { diff --git a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java index 9a21dde..9d3e33b 100644 --- a/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java +++ b/integration-tests/microprofile/src/test/java/org/apache/camel/quarkus/component/microprofile/it/health/MicroprofileHealthIT.java @@ -17,9 +17,7 @@ package org.apache.camel.quarkus.component.microprofile.it.health; import io.quarkus.test.junit.NativeImageTest; -import org.junit.jupiter.api.Disabled; -@Disabled("https://github.com/apache/camel-quarkus/issues/2521") @NativeImageTest class MicroprofileHealthIT extends MicroProfileHealthTest {
