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

Matthew Swift
19.51.2013 cc436fb6ca1ea44d70f62777855fd4f21b4e50bc
opendj-admin/src/test/java/org/opends/server/admin/client/ldap/ModifyEntryMockLDAPConnection.java
@@ -37,7 +37,7 @@
import org.forgerock.opendj.ldap.requests.ModifyRequest;
import org.testng.Assert;
import com.forgerock.opendj.util.Validator;
import org.forgerock.util.Reject;
/**
 * A mock LDAP connection which is used to verify that a modify operation was
@@ -74,8 +74,8 @@
     *            deleted).
     */
    public void addExpectedModification(String expectedName, String... expectedValues) {
        Validator.ensureNotNull(expectedName);
        Validator.ensureNotNull(expectedValues);
        Reject.ifNull(expectedName);
        Reject.ifNull(expectedValues);
        modifications.put(expectedName, Arrays.asList(expectedValues));
    }