Browse Source

Temporarily disable flaky integration test

See gh-33909
pull/33953/head
Brian Clozel 1 year ago
parent
commit
afef439c1f
  1. 3
      spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java

3
spring-webflux/src/test/java/org/springframework/web/reactive/function/client/WebClientIntegrationTests.java

@ -83,6 +83,7 @@ import org.springframework.web.reactive.function.client.WebClient.ResponseSpec; @@ -83,6 +83,7 @@ import org.springframework.web.reactive.function.client.WebClient.ResponseSpec;
import org.springframework.web.testfixture.xml.Pojo;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.jupiter.api.Assumptions.assumeFalse;
import static org.junit.jupiter.params.provider.Arguments.argumentSet;
/**
@ -192,6 +193,8 @@ class WebClientIntegrationTests { @@ -192,6 +193,8 @@ class WebClientIntegrationTests {
@ParameterizedWebClientTest
void applyAttributesToNativeRequest(ClientHttpConnector connector) {
assumeFalse(connector instanceof ReactorClientHttpConnector,
"Temporarily disabling flaky test for Reactor Netty");
startServer(connector);
prepareResponse(response -> {});

Loading…
Cancel
Save