@@ -21,7 +21,7 @@ def test_doubles_max_damage_player():
2121
2222 # calls player.choose_random_doubles_move(battle)
2323 battle ._available_switches [0 ].append (Pokemon (species = "ponyta" , gen = 8 ))
24- assert player .choose_move (battle ).message == "/choose switch ponyta , pass"
24+ assert player .choose_move (battle ).message == "/choose switch Ponyta , pass"
2525
2626 active_raichu = Pokemon (species = "raichu" , gen = 8 )
2727 active_raichu .switch_in ()
@@ -30,7 +30,7 @@ def test_doubles_max_damage_player():
3030 # calls player.choose_random_doubles_move(battle)
3131 battle ._available_switches [1 ].append (Pokemon (species = "rapidash" , gen = 8 ))
3232 assert (
33- player .choose_move (battle ).message == "/choose switch ponyta , switch rapidash "
33+ player .choose_move (battle ).message == "/choose switch Ponyta , switch Rapidash "
3434 )
3535
3636 active_ducklett = Pokemon (species = "ducklett" , gen = 8 )
@@ -42,7 +42,7 @@ def test_doubles_max_damage_player():
4242
4343 # chooses a move for p1a, other slot defaults
4444 battle ._available_moves [0 ].append (Move ("protect" , gen = 8 ))
45- assert player .choose_move (battle ).message == "/choose move protect, switch rapidash "
45+ assert player .choose_move (battle ).message == "/choose move protect, switch Rapidash "
4646
4747 # chooses max BP move for both pokemon, targets chosen randomly
4848 battle ._available_moves [0 ].append (Move ("quickattack" , gen = 8 ))
@@ -64,13 +64,13 @@ def test_doubles_max_damage_player():
6464
6565 # forced switch
6666 battle ._force_switch = [True , False ]
67- assert player .choose_move (battle ).message in ["/choose switch ponyta , pass" ]
67+ assert player .choose_move (battle ).message in ["/choose switch Ponyta , pass" ]
6868
6969 battle ._force_switch = [False , True ]
70- assert player .choose_move (battle ).message in ["/choose pass, switch rapidash " ]
70+ assert player .choose_move (battle ).message in ["/choose pass, switch Rapidash " ]
7171
7272 battle ._force_switch = [True , True ]
7373 battle ._available_switches [0 ].append (battle ._available_switches [1 ][0 ])
7474 assert player .choose_move (battle ).message in [
75- "/choose switch ponyta , switch rapidash "
75+ "/choose switch Ponyta , switch Rapidash "
7676 ]
0 commit comments