We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc99edc commit 74ba003Copy full SHA for 74ba003
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestDFSPermission.java
@@ -266,8 +266,8 @@ public void testFSNamesystemCheckAccess() throws Exception{
266
Path testInvalidPath = new Path("/test2");
267
fs = FileSystem.get(conf);
268
269
- LambdaTestUtils.intercept(FileNotFoundException.class,
270
- "Path not found: " + testInvalidPath,
+ LambdaTestUtils.intercept(
+ FileNotFoundException.class, "Path not found: " + testInvalidPath,
271
() -> fs.access(testInvalidPath, FsAction.READ));
272
}
273
0 commit comments