In the "bowling/bowling_test.py" file there is a test that is testing a positive integer where (in the canonical data) it should be testing -1.
deftest_rolls_cannot_score_negative_points(self):
withself.assertRaisesWithMessage(ValueError):
self.game.roll(11)
That last line should read:
In the "bowling/bowling_test.py" file there is a test that is testing a positive integer where (in the canonical data) it should be testing -1.
That last line should read: