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

jvergara
26.41.2007 cb2184dd20f4eb568cebb8915315abe13568214f
opends/tests/unit-tests-testng/src/server/org/opends/server/TestCaseUtils.java
@@ -1231,7 +1231,7 @@
   */
  public static void dsconfig(String... args)
  {
    String[] fullArgs = new String[args.length + 8];
    String[] fullArgs = new String[args.length + 9];
    fullArgs[0] = "-h";
    fullArgs[1] = "127.0.0.1";
    fullArgs[2] = "-p";
@@ -1240,8 +1240,9 @@
    fullArgs[5] = "cn=Directory Manager";
    fullArgs[6] = "-w";
    fullArgs[7] = "password";
    fullArgs[8] = "-n";
    System.arraycopy(args, 0, fullArgs, 8, args.length);
    System.arraycopy(args, 0, fullArgs, 9, args.length);
    assertEquals(DSConfig.main(fullArgs, false, System.out, System.err), 0);
  }