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

Jean-Noël Rouvignac
14.05.2015 4f6891a8bd4d017a41b5f75748398ff59787501c
opendj-server-legacy/src/test/java/org/opends/server/backends/jeb/TestVLVIndex.java
@@ -94,12 +94,11 @@
    TestCaseUtils.startServer();
    TestCaseUtils.enableBackend(beID);
    SortKey[] sortKeys = new SortKey[3];
    sortKeys[0] = new SortKey(DirectoryServer.getAttributeType("givenname"), true);
    sortKeys[1] = new SortKey(DirectoryServer.getAttributeType("sn"),
                              false);
    sortKeys[2] = new SortKey(
        DirectoryServer.getAttributeType("uid"), true);
    SortKey[] sortKeys = new SortKey[] {
      new SortKey(DirectoryServer.getAttributeTypeOrNull("givenname"), true),
      new SortKey(DirectoryServer.getAttributeTypeOrNull("sn"), false),
      new SortKey(DirectoryServer.getAttributeTypeOrNull("uid"), true),
    };
    sortOrder = new SortOrder(sortKeys);
    aaccfJohnsonDN    = DN.valueOf("uid=aaccf.johnson,dc=vlvtest,dc=com");