Commit the hadoop-common part of HDFS-6189.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1584767 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Tsz-wo Sze 2014-04-04 15:53:57 +00:00
parent 4147a52143
commit 62ad7e261a
3 changed files with 6 additions and 2 deletions

View File

@ -90,6 +90,10 @@ public abstract class FSMainOperationsBaseTest extends FileSystemTestHelper {
public FSMainOperationsBaseTest() {
}
public FSMainOperationsBaseTest(String testRootDir) {
super(testRootDir);
}
@Before
public void setUp() throws Exception {
fSys = createFileSystem();

View File

@ -49,7 +49,7 @@ public final class FileContextTestHelper {
/**
* Create a context with the given test root
*/
private FileContextTestHelper(String testRootDir) {
public FileContextTestHelper(String testRootDir) {
this.testRootDir = testRootDir;
}

View File

@ -52,7 +52,7 @@ public class FileSystemTestHelper {
/**
* Create helper with the specified test root dir
*/
private FileSystemTestHelper(String testRootDir) {
public FileSystemTestHelper(String testRootDir) {
this.testRootDir = testRootDir;
}