Skip to content

Commit 3b7cafe

Browse files
committed
HADOOP-19415. Fix CheckStyle Issue.
1 parent 1440f07 commit 3b7cafe

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ public void testBasicPaths() {
6666
assertEquals(schemeWithAuthority, fcView.getDefaultFileSystem().getUri());
6767
assertEquals(fcView.makeQualified(
6868
new Path("/user/" + System.getProperty("user.name"))),
69-
fcView.getWorkingDirectory());
69+
fcView.getWorkingDirectory());
7070
assertEquals(fcView.makeQualified(
7171
new Path("/user/" + System.getProperty("user.name"))),
72-
fcView.getHomeDirectory());
72+
fcView.getHomeDirectory());
7373
assertEquals(
7474
new Path("/foo/bar").makeQualified(schemeWithAuthority, null),
75-
fcView.makeQualified(new Path("/foo/bar")));
75+
fcView.makeQualified(new Path("/foo/bar")));
7676
}
7777
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ public void testInternalMkdirExisting2() throws IOException {
710710
assertThrows(AccessControlException.class, () -> {
711711
fcView.mkdir(fileContextTestHelper.getTestRootPath(fcView,
712712
"/internalDir/linkToDir2"),
713-
FileContext.DEFAULT_PERM, false);
713+
FileContext.DEFAULT_PERM, false);
714714
});
715715
}
716716
@Test
@@ -950,7 +950,7 @@ public void testInternalCreateSnapshot2() throws IOException {
950950
public void testInternalRenameSnapshot() throws IOException {
951951
assertThrows(AccessControlException.class, () -> {
952952
fcView.renameSnapshot(new Path("/internalDir"), "snapOldName",
953-
"snapNewName");
953+
"snapNewName");
954954
});
955955
}
956956

0 commit comments

Comments
 (0)