Skip to content

Commit

Permalink
Python "bowling" test issue. (#1372)
Browse files Browse the repository at this point in the history
Fixes /exercism/python/#1371.
  • Loading branch information
yawpitch authored and cmccandless committed Apr 10, 2018
1 parent f44817c commit f93813c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/bowling/bowling_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def test_all_strikes_is_a_perfect_game(self):
def test_rolls_cannot_score_negative_points(self):

with self.assertRaisesWithMessage(ValueError):
self.game.roll(11)
self.game.roll(-1)

def test_a_roll_cannot_score_more_than_10_points(self):

Expand Down

0 comments on commit f93813c

Please sign in to comment.