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

Gaetan Boismal
08.25.2016 8bf05d16714ec5ec23bec6d169b4b8201c463ce4
opendj-server-legacy/src/test/java/org/opends/server/tools/RebuildIndexTestCase.java
@@ -81,7 +81,8 @@
    final String[] args = {
        "-f",configFilePath,
        "-b", baseDN,
        "-i", "description"
        "-i", "description",
        "--offline"
    };
    assertEquals(RebuildIndex.mainRebuildIndex(args, false, null, null), 1);
  }
@@ -95,7 +96,8 @@
    final String[] args = {
        "-f", configFilePath,
        "-b", baseDN,
        "-i", "ds-sync-hist"
        "-i", "ds-sync-hist",
        "--offline"
    };
    assertEquals(RebuildIndex.mainRebuildIndex(args, false, null, null), 0);
  }
@@ -106,7 +108,8 @@
    final String[] args = {
            "-f", configFilePath,
            "-b", baseDN,
            "--rebuildDegraded"
            "--rebuildDegraded",
            "--offline"
    };
    assertEquals(RebuildIndex.mainRebuildIndex(args, false, null, null), 0);
  }