Modified: hadoop/common/branches/branch-trunk-win/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/viewfs/ViewFsTestSetup.java URL: http://svn.apache.org/viewvc/hadoop/common/branches/branch-trunk-win/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/viewfs/ViewFsTestSetup.java?rev=1422713&r1=1422712&r2=1422713&view=diff ============================================================================== --- hadoop/common/branches/branch-trunk-win/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/viewfs/ViewFsTestSetup.java (original) +++ hadoop/common/branches/branch-trunk-win/hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/viewfs/ViewFsTestSetup.java Sun Dec 16 23:22:22 2012 @@ -50,8 +50,6 @@ public class ViewFsTestSetup { static public String ViewFSTestDir = "/testDir"; - private static final FileContextTestHelper FILE_CONTEXT_TEST_HELPER = - new FileContextTestHelper(); /* * return the ViewFS File context to be used for tests @@ -61,7 +59,7 @@ public class ViewFsTestSetup { * create the test root on local_fs - the mount table will point here */ FileContext fsTarget = FileContext.getLocalFSFileContext(); - Path targetOfTests = FILE_CONTEXT_TEST_HELPER.getTestRootPath(fsTarget); + Path targetOfTests = FileContextTestHelper.getTestRootPath(fsTarget); // In case previous test was killed before cleanup fsTarget.delete(targetOfTests, true); @@ -69,7 +67,7 @@ public class ViewFsTestSetup { Configuration conf = new Configuration(); // Set up viewfs link for test dir as described above - String testDir = FILE_CONTEXT_TEST_HELPER.getTestRootPath(fsTarget).toUri() + String testDir = FileContextTestHelper.getTestRootPath(fsTarget).toUri() .getPath(); linkUpFirstComponents(conf, testDir, fsTarget, "test dir"); @@ -96,7 +94,7 @@ public class ViewFsTestSetup { */ static public void tearDownForViewFsLocalFs() throws Exception { FileContext fclocal = FileContext.getLocalFSFileContext(); - Path targetOfTests = FILE_CONTEXT_TEST_HELPER.getTestRootPath(fclocal); + Path targetOfTests = FileContextTestHelper.getTestRootPath(fclocal); fclocal.delete(targetOfTests, true); }
