Skip to content

Commit 47f1a5a

Browse files
committed
HADOOP-19617. Fix CheckStyle.
1 parent c49d6ff commit 47f1a5a

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

hadoop-common-project/hadoop-nfs/src/test/java/org/apache/hadoop/nfs/TestNfsExports.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -208,17 +208,17 @@ public void testMultiMatchers() throws Exception {
208208

209209
@Test
210210
public void testInvalidHost() {
211-
Assertions.assertThrows(IllegalArgumentException.class, () -> {
212-
NfsExports matcher = new NfsExports(CacheSize, ExpirationPeriod,
213-
"foo#bar");
214-
});
211+
Assertions.assertThrows(IllegalArgumentException.class, () -> {
212+
NfsExports matcher = new NfsExports(CacheSize, ExpirationPeriod,
213+
"foo#bar");
214+
});
215215
}
216216

217217
@Test
218218
public void testInvalidSeparator() {
219-
Assertions.assertThrows(IllegalArgumentException.class, () -> {
220-
NfsExports matcher = new NfsExports(CacheSize, ExpirationPeriod,
221-
"foo ro : bar rw");
222-
});
219+
Assertions.assertThrows(IllegalArgumentException.class, () -> {
220+
NfsExports matcher = new NfsExports(CacheSize, ExpirationPeriod,
221+
"foo ro : bar rw");
222+
});
223223
}
224224
}

0 commit comments

Comments
 (0)