Skip to content

Commit 8322a19

Browse files
committed
checkstyle
1 parent 2e49cf5 commit 8322a19

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azurebfs/AbstractAbfsIntegrationTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
import java.util.concurrent.Callable;
2727

2828
import org.junit.After;
29-
import org.junit.Assert;
3029
import org.junit.Before;
3130
import org.slf4j.Logger;
3231
import org.slf4j.LoggerFactory;

hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azurebfs/ITestAzureBlobFileSystemRename.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)