From b76cfd05b32c6057efbc6df0a75ba539bc18611c Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Mon, 16 Jun 2025 17:01:49 -0400 Subject: [PATCH] Fixde test --- test/moves/gastro_acid.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/moves/gastro_acid.test.ts b/test/moves/gastro_acid.test.ts index eba530e7480..39167987809 100644 --- a/test/moves/gastro_acid.test.ts +++ b/test/moves/gastro_acid.test.ts @@ -44,8 +44,8 @@ describe("Moves - Gastro Acid", () => { expect(enemy1.summonData.abilitySuppressed).toBe(true); expect(enemy2.summonData.abilitySuppressed).toBe(false); - game.move.select(MoveId.WATER_GUN, BattlerIndex.PLAYER, BattlerIndex.ENEMY); - game.move.select(MoveId.WATER_GUN, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY_2); + game.move.use(MoveId.WATER_GUN, BattlerIndex.PLAYER, BattlerIndex.ENEMY); + game.move.use(MoveId.WATER_GUN, BattlerIndex.PLAYER_2, BattlerIndex.ENEMY_2); await game.toEndOfTurn(); expect(enemy1.summonData.abilitySuppressed).toBe(true);