Skip to content

Commit

Permalink
Add a test that clarifies that '_' is valid
Browse files Browse the repository at this point in the history
This stumps people.
  • Loading branch information
paytonrules committed Jun 11, 2015
1 parent 69e5b77 commit a4fdb7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/com/hangman/players/YourPlayerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class YourPlayerTest {
public void AlwaysGuessA() {
YourPlayer player = new YourPlayer();

char guess = player.GetGuess(Arrays.asList('a', 'b', 'c'));
char guess = player.GetGuess(Arrays.asList('_', 'b', 'c'));

assertEquals('a', guess);
}
Expand Down

0 comments on commit a4fdb7b

Please sign in to comment.