diff options
Diffstat (limited to 'diplomacy/tests')
-rw-r--r-- | diplomacy/tests/test_game.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diplomacy/tests/test_game.py b/diplomacy/tests/test_game.py index 20994c8..cec1df7 100644 --- a/diplomacy/tests/test_game.py +++ b/diplomacy/tests/test_game.py @@ -518,7 +518,7 @@ def test_set_current_phase(): game.clear_cache() assert game.get_current_phase() == 'W1901A' assert game.phase_type == 'A' - assert 'A PAR B' in game.get_all_possible_orders('PAR') + assert 'A PAR B' in game.get_all_possible_orders()['PAR'] def test_process_game(): """ Tests - Process game """ |