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

Jean-Noël Rouvignac
29.51.2015 4baece95779dd46a3a59d59d1b7aa5958cf6117d
opendj-server-legacy/src/test/java/org/opends/server/protocols/ldap/TestAddRequestProtocolOp.java
@@ -55,7 +55,7 @@
  /** The protocol op type for add responses. */
  private static final byte OP_TYPE_ADD_RESPONSE = 0x69;
  /** The DN for add requests in this test case. */
  private static final ByteString dn = ByteString.valueOf("dc=example,dc=com");
  private static final ByteString dn = ByteString.valueOfUtf8("dc=example,dc=com");
  /**
   * Generate attributes for use in test cases. Attributes will have names
@@ -364,7 +364,7 @@
    List<RawAttribute> attributes =
        generateAttributes(numAttributes, numValues, " test");
    ByteString dnNeedsBase64 = ByteString.valueOf("dc=example,dc=com ");
    ByteString dnNeedsBase64 = ByteString.valueOfUtf8("dc=example,dc=com ");
    AddRequestProtocolOp addRequest =
        new AddRequestProtocolOp(dnNeedsBase64, attributes);