Fix bug in incorrectly reporting relative paths in log
This commit is contained in:
parent
856905ee5b
commit
dc07067265
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in New Issue