Mark flaky test as @Ignore (#9010)

Motivation:

0a0da67f43 introduced a testcase which is flacky. We need to fix it and enable it again.

Modifications:

Mark flaky test as ignore.

Result:

No flaky build anymore.
This commit is contained in:
Norman Maurer 2019-04-04 21:05:36 +02:00 committed by GitHub
parent 52411233d3
commit ad928c19eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,7 @@ import io.netty.util.IntSupplier;
import io.netty.util.concurrent.DefaultThreadFactory;
import io.netty.util.concurrent.Future;
import org.hamcrest.core.IsInstanceOf;
import org.junit.Ignore;
import org.junit.Test;
import java.io.IOException;
@ -258,6 +259,7 @@ public class NioEventLoopTest extends AbstractEventLoopTest {
}
}
@Ignore
@Test
public void testChannelsRegistered() {
NioEventLoopGroup group = new NioEventLoopGroup(1);