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/11/11 09:31:50 UTC

[camel-quarkus-examples] 01/02: Enable health tests after Camel 3.19.0 upgrade

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

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

commit c2c997ed4a0983ef367b86f5fd4d96e62c227e8b
Author: James Netherton <ja...@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")