Fix bug in incorrectly reporting relative paths in log

This commit is contained in:
Mark DePristo 2012-06-13 17:06:08 -04:00
parent 856905ee5b
commit dc07067265
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ public abstract class BaseTest {
protected static final String testDirRelative = "public/testdata/";
public static final File testDirFile = new File(testDirRelative);
public static final String testDir = testDirFile.getAbsolutePath() + "/";
protected static final String testDirRoot = testDirFile.getPath().replace(testDirRelative, "");
protected static final String testDirRoot = testDir.replace(testDirRelative, "");
public static final String keysDataLocation = validationDataLocation + "keys/";
public static final String gatkKeyFile = CryptUtils.GATK_USER_KEY_DIRECTORY + "gsamembers_broadinstitute.org.key";