This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel.git
commit 630218652c2298b960c0f0a769d0369ce502a14e Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Mon Dec 30 15:15:27 2024 +0100 (chores) camel-platform-http: disable broken test The test tries to access an invalid URL which causes it to fail --- .../org/apache/camel/component/platform/http/PlatformHttpProxyTest.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/camel-platform-http/src/test/java/org/apache/camel/component/platform/http/PlatformHttpProxyTest.java b/components/camel-platform-http/src/test/java/org/apache/camel/component/platform/http/PlatformHttpProxyTest.java index c25da3058cd..c35d51d85df 100644 --- a/components/camel-platform-http/src/test/java/org/apache/camel/component/platform/http/PlatformHttpProxyTest.java +++ b/components/camel-platform-http/src/test/java/org/apache/camel/component/platform/http/PlatformHttpProxyTest.java @@ -19,11 +19,13 @@ package org.apache.camel.component.platform.http; import io.restassured.http.ContentType; import org.apache.camel.Exchange; import org.apache.camel.builder.RouteBuilder; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import static io.restassured.RestAssured.given; import static org.hamcrest.Matchers.containsString; +@Disabled("Broken test: fails due to invalid host") public class PlatformHttpProxyTest extends AbstractPlatformHttpTest { @Test void testProxy() {
