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

Matthew Swift
05.37.2012 c208a86ef39101b7c9013b9736753ab1bd31f6ee
opendj-sdk/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();