Fix compile error in test introduced by 96f92929ab

This commit is contained in:
Norman Maurer 2019-08-16 10:11:03 +02:00
parent 7a375a492c
commit fc33d6ae99

View File

@ -332,7 +332,7 @@ public class HttpClientCodecTest {
String response = "HTTP/1.1 200 OK\r\n" +
"Content-Length: 0\r\n\r\n";
HttpClientCodec codec = new HttpClientCodec(4096, 8192, 8192, true);
HttpClientCodec codec = new HttpClientCodec(4096, 8192, true);
EmbeddedChannel ch = new EmbeddedChannel(codec, new HttpObjectAggregator(1024));
HttpRequest request = new DefaultFullHttpRequest(HttpVersion.HTTP_1_1, HttpMethod.GET, "http://localhost/");