From a542d4d78bb5008a2730dc0958ccbb4c32d7813a Mon Sep 17 00:00:00 2001 From: Norman Maurer Date: Mon, 15 Oct 2018 15:10:22 +0200 Subject: [PATCH] Increase test timeout (#8385) Motivation: It has shown that the used test timeout may be too low when the CI is busy. Modifications: Increase timeout to 3 seconds. Result: Less false-positives. --- .../src/test/java/io/netty/channel/nio/NioEventLoopTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/test/java/io/netty/channel/nio/NioEventLoopTest.java b/transport/src/test/java/io/netty/channel/nio/NioEventLoopTest.java index 1d5801377e..d3412c2d99 100644 --- a/transport/src/test/java/io/netty/channel/nio/NioEventLoopTest.java +++ b/transport/src/test/java/io/netty/channel/nio/NioEventLoopTest.java @@ -136,7 +136,7 @@ public class NioEventLoopTest extends AbstractEventLoopTest { } } - @Test(timeout = 1000) + @Test(timeout = 3000) public void testSelectableChannel() throws Exception { NioEventLoopGroup group = new NioEventLoopGroup(1); NioEventLoop loop = (NioEventLoop) group.next();