Cleanup test case (#10232)
* Motivation: JsonObjectDecoderTest did include 3 println(...) call which was leftover from debugging. Modifications: Removed println(...) Result: Cleanup Co-authored-by: Norman Maurer <norman_maurer@apple.com>
This commit is contained in:
parent
cf589a8f31
commit
79915347c6
@ -185,7 +185,7 @@ public class JsonObjectDecoderTest {
|
||||
EmbeddedChannel ch = new EmbeddedChannel(new JsonObjectDecoder());
|
||||
// {"foo" : "bar\""}
|
||||
String json = "{\"foo\" : \"bar\\\"\"}";
|
||||
System.out.println(json);
|
||||
|
||||
ch.writeInbound(Unpooled.copiedBuffer(json, CharsetUtil.UTF_8));
|
||||
|
||||
ByteBuf res = ch.readInbound();
|
||||
@ -200,7 +200,7 @@ public class JsonObjectDecoderTest {
|
||||
EmbeddedChannel ch = new EmbeddedChannel(new JsonObjectDecoder());
|
||||
// {"foo" : "bar\\"}
|
||||
String json = "{\"foo\" : \"bar\\\\\"}";
|
||||
System.out.println(json);
|
||||
|
||||
ch.writeInbound(Unpooled.copiedBuffer(json, CharsetUtil.UTF_8));
|
||||
|
||||
ByteBuf res = ch.readInbound();
|
||||
@ -215,7 +215,7 @@ public class JsonObjectDecoderTest {
|
||||
EmbeddedChannel ch = new EmbeddedChannel(new JsonObjectDecoder());
|
||||
// {"foo" : "bar\\\""}
|
||||
String json = "{\"foo\" : \"bar\\\\\\\"\"}";
|
||||
System.out.println(json);
|
||||
|
||||
ch.writeInbound(Unpooled.copiedBuffer(json, CharsetUtil.UTF_8));
|
||||
|
||||
ByteBuf res = ch.readInbound();
|
||||
|
Loading…
Reference in New Issue
Block a user