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

Jean-Noël Rouvignac
06.25.2016 d89c47e7cb1b3c9181e25582539aac1dedb46099
opendj-server-legacy/src/test/java/org/opends/server/backends/SchemaBackendTestCase.java
@@ -4494,7 +4494,7 @@
    assertTrue(schemaEntry.hasAttribute(mtType));
    ByteString oldMTValue =
         schemaEntry.getAttribute(mtType).get(0).iterator().next();
         schemaEntry.getAllAttributes(mtType).get(0).iterator().next();
    String ldif = toLdif(
         "dn: cn=schema",
@@ -4518,7 +4518,7 @@
    assertTrue(schemaEntry.hasAttribute(mtType));
    ByteString newMTValue =
         schemaEntry.getAttribute(mtType).get(0).iterator().next();
         schemaEntry.getAllAttributes(mtType).get(0).iterator().next();
    assertNotEquals(oldMTValue, newMTValue);
  }