Skip to content

Commit

Permalink
fixtest
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinKirs committed Sep 11, 2024
1 parent 59fc313 commit 506eafe
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ public void testFile() throws IOException {
if (errorFileWithSuffix.exists()) {
errorFileWithSuffix.delete();
}
Assert.assertThrows(IllegalArgumentException.class, () -> MetaHelper.complete(errorFilename, tempDir));
Assert.assertThrows(IllegalArgumentException.class, () -> MetaHelper.getFile(errorFilename, tempDir));
Assert.assertThrows(Exception.class, () -> MetaHelper.complete(errorFilename, tempDir));
Assert.assertThrows(Exception.class, () -> MetaHelper.getFile(errorFilename, tempDir));
if (rightFileWithSuffix.exists()) {
rightFileWithSuffix.delete();
}
Expand Down

0 comments on commit 506eafe

Please sign in to comment.