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

This commit is contained in:
Akira Ajisaka 2019-11-15 13:49:57 +09:00
parent d0302d3849
commit 92c28c100e
No known key found for this signature in database
GPG Key ID: C1EDBB9CA400FD50

View File

@ -86,7 +86,7 @@ public void testDeleteNonEmptyDirNonRecursive() throws Throwable {
@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",