Removing debugging change from unit test.

Motivation:

HttpToHttp2ConnectionHandlerTest was accidentally modified with a
debugging value for WAIT_TIME_SECONDS.

Modifications:

Reverted the change.

Result:

original wait time restored.
This commit is contained in:
nmittler 2015-02-11 09:06:09 -08:00
parent 976db9269d
commit daba2b3313

View File

@ -70,7 +70,7 @@ import org.mockito.stubbing.Answer;
* Testing the {@link HttpToHttp2ConnectionHandler} for {@link FullHttpRequest} objects into HTTP/2 frames * Testing the {@link HttpToHttp2ConnectionHandler} for {@link FullHttpRequest} objects into HTTP/2 frames
*/ */
public class HttpToHttp2ConnectionHandlerTest { public class HttpToHttp2ConnectionHandlerTest {
private static final int WAIT_TIME_SECONDS = 500; private static final int WAIT_TIME_SECONDS = 5;
@Mock @Mock
private Http2FrameListener clientListener; private Http2FrameListener clientListener;