Skip to content

Commit 5c2e5d0

Browse files
fix test
1 parent 1098232 commit 5c2e5d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

unit_tests/environment/test_pokemon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ def test_temporary():
332332
furret.start_effect("typechange", "Fighting")
333333
assert furret.damage_multiplier(PokemonType.PSYCHIC) == 2
334334

335-
furret.switch_out()
335+
furret.switch_out({})
336336
furret.switch_in()
337337

338338
assert furret.ability == "adaptability"
@@ -348,6 +348,6 @@ def test_temporary():
348348
furret.set_temporary_ability(None)
349349
assert furret.ability is None
350350

351-
furret.switch_out()
351+
furret.switch_out({})
352352
assert furret.ability == "adaptability"
353353
assert furret.types == [PokemonType.DRAGON]

0 commit comments

Comments
 (0)