Made the BaseTest.testDir absolute

This commit is contained in:
Khalid Shakir 2011-10-06 22:33:21 -04:00
parent d367945dec
commit f91b015e0e
1 changed files with 2 additions and 1 deletions

View File

@ -80,7 +80,8 @@ public abstract class BaseTest {
public static final String networkTempDir = "/broad/shptmp/";
public static final File networkTempDirFile = new File(networkTempDir);
public static final String testDir = "public/testdata/";
public static final File testDirFile = new File("public/testdata/");
public static final String testDir = testDirFile.getAbsolutePath() + "/";
/** before the class starts up */
static {