We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce5db1f commit bd4700aCopy full SHA for bd4700a
tests/test_player.py
@@ -30,6 +30,4 @@ def test_original_strategy(
30
action = player.original_strategy(
31
their_last_move, move_number, my_score, their_score, 0,
32
my_last_move)
33
- if action not in (0, 1):
34
- print(f'{strategy} returned {action}')
35
- assert action in (0, 1)
+ assert action in (0, 1), print(f'{strategy} returned {action}')
0 commit comments