Skip to content

Commit

Permalink
Update TestGameDifficulty.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Nalveer committed Mar 15, 2020
1 parent a897661 commit 589c300
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/kakuro/TestGameDifficulty.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ public void testGameDifficultyToInt() {

//Act
int one = GameDifficulty.GameDifficultyToInt(easyGame);
int two = GameDifficulty.GameDifficultyToInt(easyGame);
int three = GameDifficulty.GameDifficultyToInt(easyGame);
int two = GameDifficulty.GameDifficultyToInt(mediumGame);
int three = GameDifficulty.GameDifficultyToInt(hardGame);

//Assert
assertEquals(one, 1);
Expand Down

0 comments on commit 589c300

Please sign in to comment.