diff --git a/reactor-netty-http/src/test/java/reactor/netty/http/HttpProtocolsTests.java b/reactor-netty-http/src/test/java/reactor/netty/http/HttpProtocolsTests.java index 87c7ac833..6c0bda776 100644 --- a/reactor-netty-http/src/test/java/reactor/netty/http/HttpProtocolsTests.java +++ b/reactor-netty-http/src/test/java/reactor/netty/http/HttpProtocolsTests.java @@ -1016,6 +1016,7 @@ void testProtocolVersion(HttpServer server, HttpClient client) { @ParameterizedCompatibleCombinationsTest void testMonoRequestBodySentAsFullRequest_Flux(HttpServer server, HttpClient client) { + // sends the message and then last http content testRequestBody(server, client, sender -> sender.send(ByteBufFlux.fromString(Mono.just("test"))), 2); }