瀏覽代碼

HADOOP-15097. AbstractContractDeleteTest::testDeleteNonEmptyDirRecursive with misleading path. Contributed by Xieming Li.

(cherry picked from commit 92c28c100ee1aa414948cd510321ad13cb8639bc)
Akira Ajisaka 5 年之前
父節點
當前提交
81060b3413

+ 1 - 1
hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/contract/AbstractContractDeleteTest.java

@@ -86,7 +86,7 @@ public abstract class AbstractContractDeleteTest extends
 
   @Test
   public void testDeleteNonEmptyDirRecursive() throws Throwable {
-    Path path = path("testDeleteNonEmptyDirNonRecursive");
+    Path path = path("testDeleteNonEmptyDirRecursive");
     mkdirs(path);
     Path file = new Path(path, "childfile");
     ContractTestUtils.writeTextFile(getFileSystem(), file, "goodbye, world",