From d94b79da7a8e37904113d1b9287e7b4e6ac99b22 Mon Sep 17 00:00:00 2001 From: Violeta Georgieva Date: Mon, 9 Dec 2024 11:00:59 +0200 Subject: [PATCH] Polish --- .../src/test/java/reactor/netty/http/HttpProtocolsTests.java | 1 + 1 file changed, 1 insertion(+) 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 87c7ac8339..6c0bda776f 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); }