Skip to content

Commit

Permalink
fixstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
GuoPhilipse committed Dec 5, 2021
1 parent f05f24a commit f70eddb
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -284,10 +284,11 @@ public void testImportCheckpoint() throws Exception{
cluster.waitActive();
FSNamesystem fsn = cluster.getNamesystem();
FSImage fsImage= new FSImage(conf);
LambdaTestUtils.intercept(IOException.class,
"Cannot import image from a checkpoint. "
+ "\"dfs.namenode.checkpoint.edits.dir\" is not set.",
() -> fsImage.doImportCheckpoint(fsn));
LambdaTestUtils.intercept(
IOException.class,
"Cannot import image from a checkpoint. "
+ "\"dfs.namenode.checkpoint.edits.dir\" is not set.",
() -> fsImage.doImportCheckpoint(fsn));
}
}

Expand Down

0 comments on commit f70eddb

Please sign in to comment.