diff --git a/src/test/java/pacmanTests/GameManagerTest.java b/src/test/java/pacmanTests/GameManagerTest.java index a04b788..64c4131 100644 --- a/src/test/java/pacmanTests/GameManagerTest.java +++ b/src/test/java/pacmanTests/GameManagerTest.java @@ -70,9 +70,10 @@ class GameManagerTest { GameManager game = new GameManager(); game.score = 100; - game.handleGhostCollision(); - game.handleGhostCollision(); - game.handleGhostCollision(); + + for(int i = 0;i < 3; i++) { + game.handleGhostCollision(); + } int expectedScore = 0; assertThat(game.score).isEqualTo(expectedScore); }