@@ -180,11 +180,14 @@ public void testPosixRenameDirectory() throws Exception {
180180 fs .mkdirs (new Path (testDir2 + "/test4" ));
181181 Assert .assertTrue (fs .rename (new Path (testDir2 + "/test1/test2/test3" ), new Path (testDir2 + "/test4" )));
182182 assertPathExists (fs , "This path should exist" , testDir2 );
183- assertPathExists (fs , "This path should exist" , new Path (testDir2 + "/test1/test2" ));
184- assertPathExists (fs , "This path should exist" ,new Path (testDir2 + "/test4" ));
185- assertPathExists (fs , "This path should exist" ,new Path (testDir2 + "/test4/test3" ));
186- assertPathDoesNotExist (fs , "This path should not exist" , new Path (testDir2 +
187- "/test1/test2/test3" ));
183+ assertPathExists (fs , "This path should exist" ,
184+ new Path (testDir2 + "/test1/test2" ));
185+ assertPathExists (fs , "This path should exist" ,
186+ new Path (testDir2 + "/test4" ));
187+ assertPathExists (fs , "This path should exist" ,
188+ new Path (testDir2 + "/test4/test3" ));
189+ assertPathDoesNotExist (fs , "This path should not exist" ,
190+ new Path (testDir2 + "/test1/test2/test3" ));
188191 }
189192
190193 @ Test
0 commit comments