Skip to content

Commit ac97062

Browse files
committed
fix blanks
1 parent 0e69dd3 commit ac97062

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

hadoop-common-project/hadoop-common/src/test/java/org/apache/hadoop/fs/viewfs/ViewFileSystemBaseTest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ protected FileSystemTestHelper createFileSystemHelper() {
116116

117117
@TempDir
118118
public File temporaryFolder;
119-
119+
120120
@BeforeEach
121121
public void setUp() throws Exception {
122122
initializeTargetTestRoot();
@@ -174,7 +174,7 @@ public void testGetMountPoints() {
174174
LOG.info("MountPoint: " + mountPoint.getMountedOnPath() + " => "
175175
+ mountPoint.getTargetFileSystemURIs()[0]);
176176
}
177-
Assertions.assertEquals(mountPoints.length, getExpectedMountPoints());
177+
Assertions.assertEquals(mountPoints.length, getExpectedMountPoints());
178178
}
179179

180180
int getExpectedMountPoints() {
@@ -190,7 +190,7 @@ int getExpectedMountPoints() {
190190
public void testGetDelegationTokens() throws IOException {
191191
Token<?>[] delTokens =
192192
fsView.addDelegationTokens("sanjay", new Credentials());
193-
Assertions.assertEquals(delTokens.length, getExpectedDelegationTokenCount());
193+
Assertions.assertEquals(delTokens.length, getExpectedDelegationTokenCount());
194194
}
195195

196196
int getExpectedDelegationTokenCount() {
@@ -735,7 +735,7 @@ private void testListOnMountTargetDirsInternal(boolean located)
735735
Assertions.assertTrue(fs.isFile(), "Created file shoudl appear as a file");
736736
fs = fileSystemTestHelper.containsPath(fsView, "/data/dirX", dirPaths);
737737
Assertions.assertNotNull(fs);
738-
Assertions.assertTrue(fs.isDirectory(), "Created dir should appear as a dir");
738+
Assertions.assertTrue(fs.isDirectory(), "Created dir should appear as a dir");
739739
}
740740

741741
private FileStatus[] listStatusInternal(boolean located, Path dataPath) throws IOException {

0 commit comments

Comments
 (0)