Redo if statement with exception throwing

This commit is contained in:
MikeZyeman
2021-12-10 19:55:22 +01:00
parent 3049650bc4
commit c16ddc6bca
2 changed files with 3 additions and 1 deletions
-1
View File
@@ -152,7 +152,6 @@ public class SiedlerGameTest {
@Test
@DisplayName("Starting Siedler game with one player, expects fail")
public void startSiedlerGameWithLowerThanMinimumWinPoints() {
Exception exc = assertThrows(IllegalArgumentException.class, () -> {
SiedlerGame game = new SiedlerGame(1, 4);
});