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

Gaetan Boismal
24.38.2015 28acaa0ac7a1342cc63dc24498497fa9668df25e
opendj-server-legacy/src/test/java/org/opends/server/TestCaseUtils.java
@@ -274,7 +274,7 @@
      // Get the build root and use it to create a test package directory.
      String buildRoot = System.getProperty(PROPERTY_BUILD_ROOT);
      String buildDirStr = System.getProperty(PROPERTY_BUILD_DIR,
              buildRoot + File.separator + "build");
              buildRoot + File.separator + "target");
      File   buildDir = new File(buildDirStr);
      File   unitRoot  = new File(buildDir, "unit-tests");
      File   testInstallRoot;
@@ -1144,7 +1144,7 @@
  public static File getUnitTestRootPath()
  {
    final String buildRoot = System.getProperty(PROPERTY_BUILD_ROOT);
    final String path = System.getProperty(PROPERTY_BUILD_DIR, buildRoot + File.separator + "build");
    final String path = System.getProperty(PROPERTY_BUILD_DIR, buildRoot + File.separator + "target");
    return new File(path, "unit-tests");
  }