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 2020/11/26 10:42:17 UTC

[camel-quarkus] 02/02: Temporarily disable GeocoderNominationTest #2033

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

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

commit 5d4be1c7aae6e5709ba59a8296a761c920a645c8
Author: James Netherton <ja...@gmail.com>
AuthorDate: Thu Nov 26 07:28:25 2020 +0000

    Temporarily disable GeocoderNominationTest #2033
---
 .../camel/quarkus/component/geocoder/it/GeocoderNominationIT.java       | 2 ++
 .../camel/quarkus/component/geocoder/it/GeocoderNominationTest.java     | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationIT.java b/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationIT.java
index 0226082..3732fd6 100644
--- a/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationIT.java
+++ b/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationIT.java
@@ -17,7 +17,9 @@
 package org.apache.camel.quarkus.component.geocoder.it;
 
 import io.quarkus.test.junit.NativeImageTest;
+import org.junit.jupiter.api.Disabled;
 
 @NativeImageTest
+@Disabled("https://github.com/apache/camel-quarkus/issues/2033")
 public class GeocoderNominationIT extends GeocoderNominationTest {
 }
diff --git a/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationTest.java b/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationTest.java
index b01962a..abab467 100644
--- a/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationTest.java
+++ b/integration-tests/geocoder/src/test/java/org/apache/camel/quarkus/component/geocoder/it/GeocoderNominationTest.java
@@ -20,6 +20,7 @@ import io.quarkus.test.common.QuarkusTestResource;
 import io.quarkus.test.common.http.TestHTTPEndpoint;
 import io.quarkus.test.junit.QuarkusTest;
 import io.restassured.RestAssured;
+import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 import static org.hamcrest.Matchers.equalTo;
@@ -27,6 +28,7 @@ import static org.hamcrest.Matchers.equalTo;
 @QuarkusTest
 @TestHTTPEndpoint(GeocoderNominationResource.class)
 @QuarkusTestResource(GeocoderTestResource.class)
+@Disabled("https://github.com/apache/camel-quarkus/issues/2033")
 public class GeocoderNominationTest {
 
     @Test