Skip to content

Commit

Permalink
Disable tests for native mode serialization due to #4148
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnetherton committed Oct 10, 2022
1 parent b6a69d4 commit aca9054
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package org.apache.camel.quarkus.component.http.it;

import io.quarkus.test.common.QuarkusTestResource;
import io.quarkus.test.junit.DisabledOnIntegrationTest;
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
Expand Down Expand Up @@ -157,6 +158,7 @@ public void compression(String component) {
.body(is("Netty Hello World Compressed"));
}

@DisabledOnIntegrationTest("https://github.com/apache/camel-quarkus/issues/4148")
@ParameterizedTest
@MethodSource("getHttpComponentNames")
public void transferException(String component) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import java.util.UUID;

import io.quarkus.test.junit.DisabledOnIntegrationTest;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import org.apache.camel.quarkus.component.messaging.it.AbstractMessagingTest;
Expand All @@ -39,6 +40,7 @@ public void testJmsTransferExchange() {
.body(is(message));
}

@DisabledOnIntegrationTest("https://github.com/apache/camel-quarkus/issues/4148")
@Test
public void testJmsTransferException() {
RestAssured.given()
Expand Down

0 comments on commit aca9054

Please sign in to comment.