Increase test timeout for SocketStringEchoTest

Motivation:
SocketStringEchoTest has been observed to fail on CI servers, but the stack traces still indicate work was being done.

Modifications:
- Increase the test timeout

Result:
Tests have more time to complete, and hopefully less false positive test failures.
This commit is contained in:
Scott Mitchell 2017-08-12 11:18:00 -07:00
parent 52e19d5c63
commit 505993a2fb

View File

@ -52,7 +52,7 @@ public class SocketStringEchoTest extends AbstractSocketTest {
}
}
@Test(timeout = 30000)
@Test(timeout = 60000)
public void testStringEcho() throws Throwable {
run();
}
@ -61,7 +61,7 @@ public class SocketStringEchoTest extends AbstractSocketTest {
testStringEcho(sb, cb, true);
}
@Test(timeout = 30000)
@Test(timeout = 60000)
public void testStringEchoNotAutoRead() throws Throwable {
run();
}