Skip to content

Commit

Permalink
Fixing broken unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcilvenna committed Mar 15, 2024
1 parent 34e5084 commit 912d9ef
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ public class FileSystemSenderTests {
@Test
public void getFilePathTest_NoConfigPath() {
FileSystemSender sender = new FileSystemSender();
FileSystemSenderConfig config = new FileSystemSenderConfig();
config.setFormat(FileSystemSenderConfig.Formats.JSON);
sender.setConfig(config);
Assert.assertThrows(IllegalArgumentException.class, () -> { sender.getFilePath("submission"); });
}

Expand Down

0 comments on commit 912d9ef

Please sign in to comment.