This is an automated email from the ASF dual-hosted git repository.

zbendhiba pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-quarkus-examples.git

commit d98b6adc9eefcb0a9057fb2aa4f89e38a54f1589
Author: James Netherton <jamesnether...@gmail.com>
AuthorDate: Thu Nov 10 14:06:46 2022 +0000

    Enable health tests after Camel 3.19.0 upgrade
    
    Fixes apache/camel-quarkus#3989
---
 health/src/test/java/org/acme/health/HealthTest.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/health/src/test/java/org/acme/health/HealthTest.java 
b/health/src/test/java/org/acme/health/HealthTest.java
index a1396a1..417a3f2 100644
--- a/health/src/test/java/org/acme/health/HealthTest.java
+++ b/health/src/test/java/org/acme/health/HealthTest.java
@@ -19,7 +19,6 @@ package org.acme.health;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
 import org.hamcrest.Matchers;
-import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.CoreMatchers.is;
@@ -27,7 +26,6 @@ import static org.hamcrest.CoreMatchers.is;
 @QuarkusTest
 public class HealthTest {
 
-    @Disabled("https://github.com/apache/camel-quarkus/issues/3989";)
     @Test
     public void testHealth() throws InterruptedException {
         RestAssured.get("/q/health")

Reply via email to