Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
3.0.0-alpha1
-
Reviewed
Description
In TestFsShellCopy#checkPut, there is a following code.
final Path dstPath = new Path("path"); final Path childPath = new Path(dstPath, "childPath"); ... // copy to non-existent subdir prepPut(childPath, false, false); checkPut(1, srcPath, dstPath, useWindowsPath);
The code expect to test the case when we put a file to non-exsistent directory. But the code delete childPath and then copy to its parent directory (dstPath).