Skip to content

Commit

Permalink
Remove flaky channelRead_Normal test that wasn't doing much
Browse files Browse the repository at this point in the history
Patch by Adam Holmberg, reviewed by brandonwilliams for CASSANDRA-15965
  • Loading branch information
aholmberg authored and driftx committed Sep 16, 2020
1 parent 2958c55 commit 68aca10
Showing 1 changed file with 0 additions and 12 deletions.
Expand Up @@ -87,18 +87,6 @@ public void tearDown()
channel.close();
}

@Test
public void channelRead_Normal()
{
Assert.assertEquals(0, buffers.unsafeAvailable());
int size = 8;
buf = channel.alloc().buffer(size);
buf.writerIndex(size);
channel.writeInbound(buf);
Assert.assertEquals(size, buffers.unsafeAvailable());
Assert.assertFalse(channel.releaseInbound());
}

@Test
public void channelRead_Closed()
{
Expand Down

0 comments on commit 68aca10

Please sign in to comment.