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.
This commit is contained in:
Norman Maurer 2018-10-15 15:10:22 +02:00 committed by GitHub
parent 4a2d03542b
commit a542d4d78b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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();