Rename class

This commit is contained in:
Norman Maurer 2013-08-02 07:24:49 +02:00
parent ebee56ef49
commit 4d064d85df

View File

@ -24,7 +24,7 @@ import org.junit.Test;
import java.util.List;
public class ByteToMessageHandlerTest {
public class ByteToMessageDecoderTest {
@Test
public void testRemoveItself() {
@ -48,7 +48,7 @@ public class ByteToMessageHandlerTest {
@Test
public void testRemoveItselfWriteBuffer() {
final ByteBuf buf = Unpooled.buffer().writeBytes(new byte[] {'a', 'b', 'c'});
final ByteBuf buf = Unpooled.buffer().writeBytes(new byte[]{'a', 'b', 'c'});
EmbeddedChannel channel = new EmbeddedChannel(new ByteToMessageDecoder() {
private boolean removed;