codec-memcache: removed println in test case.

This commit is contained in:
Michael Nitschinger 2013-12-02 11:58:44 +01:00 committed by Trustin Lee
parent 183bfe8f9f
commit a1526bedd3

View File

@ -123,7 +123,6 @@ public class BinaryMemcacheDecoderTest {
int expectedContentChunks = 4;
for (int i = 1; i <= expectedContentChunks; i++) {
MemcacheContent content = (MemcacheContent) channel.readInbound();
System.out.println(content);
if (i < expectedContentChunks) {
assertThat(content, instanceOf(MemcacheContent.class));
} else {