mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
05.37.2012 83f128f28521e6d730fdc77c43b64aceb466822f
Extend timeout for all tests.
1 files modified
3 ■■■■ changed files
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java 3 ●●●● patch | view | raw | blame | history
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java
@@ -72,6 +72,7 @@
 * Tests the {@code ConnectionFactory} classes.
 */
@SuppressWarnings("javadoc")
@Test(timeOut = 10000)
public class ConnectionFactoryTestCase extends SdkTestCase {
    // Test timeout in ms for tests which need to wait for network events.
    private static final long TEST_TIMEOUT = 30L;
@@ -245,7 +246,7 @@
     *
     * @throws Exception
     */
    @Test(dataProvider = "connectionFactories", timeOut = TEST_TIMEOUT_MS)
    @Test(dataProvider = "connectionFactories")
    public void testBlockingFutureNoHandler(ConnectionFactory factory) throws Exception {
        final FutureResult<Connection> future = factory.getConnectionAsync(null);
        final Connection con = future.get();