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

Matthew Swift
20.16.2011 7502e11a640c6eb92c4fc7604a4abf31c28745ed
opendj3/opendj-ldap-sdk/src/test/java/org/forgerock/opendj/ldap/ConnectionFactoryTestCase.java
@@ -263,7 +263,7 @@
    final AsynchronousConnection con = future.get();
    // quickly check if it is a valid connection.
    // Don't use a result handler.
    assertNotNull(con.readRootDSE(null).get());
    assertNotNull(con.readEntry(DN.rootDN(), null, null).get());
    con.close();
  }
@@ -306,7 +306,7 @@
    final Connection con = factory.getConnection();
    assertNotNull(con);
    // quickly check if it is a valid connection.
    assertTrue(con.readRootDSE().getEntry().getName().isRootDN());
    assertTrue(con.readEntry("").getName().isRootDN());
    con.close();
  }