Http2FrameCodecTest increase timeout

Motivation:
Http2FrameCodecTest#newOutboundStream has a timeout of 1 second and has been observed to timeout on CI servers.

Modifications:
- Increase the timeout to 5 seconds

Result:
Less false positive test failures on CI servers.
This commit is contained in:
Scott Mitchell 2017-12-22 08:48:45 -08:00 committed by Norman Maurer
parent e17f438b10
commit adf2596c36

View File

@ -483,7 +483,7 @@ public class Http2FrameCodecTest {
verify(frameWriter).writeSettings(eq(http2HandlerCtx), same(settings), any(ChannelPromise.class));
}
@Test(timeout = 1000)
@Test(timeout = 5000)
public void newOutboundStream() {
final Http2FrameStream stream = frameCodec.newStream();