Skip to content

Commit

Permalink
Increase test timeout (netty#8385)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
normanmaurer authored Oct 15, 2018
1 parent 4a2d035 commit a542d4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public void run() {
}
}

@Test(timeout = 1000)
@Test(timeout = 3000)
public void testSelectableChannel() throws Exception {
NioEventLoopGroup group = new NioEventLoopGroup(1);
NioEventLoop loop = (NioEventLoop) group.next();
Expand Down

0 comments on commit a542d4d

Please sign in to comment.