diff --git a/tests/test_player.py b/tests/test_player.py index e0b7799..12b540b 100644 --- a/tests/test_player.py +++ b/tests/test_player.py @@ -34,9 +34,7 @@ def test_original_strategy( action = player.original_strategy( their_last_move, move_number, my_score, their_score, 0, my_last_move) - if action not in (0, 1): - print(f'{strategy} returned {action}') - assert action in (0, 1) + assert action in (0, 1), print(f'{strategy} returned {action}') def test_matches():