From 3707c00e20c0d49e9fcc9342f114c94fa565538f Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Mon, 21 Apr 2025 18:19:27 -0400 Subject: [PATCH] Fixed test I forgot that we outsped and oneshot --- test/moves/rage_fist.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/moves/rage_fist.test.ts b/test/moves/rage_fist.test.ts index d6d34643c7b..f215c5955c6 100644 --- a/test/moves/rage_fist.test.ts +++ b/test/moves/rage_fist.test.ts @@ -194,8 +194,9 @@ describe("Moves - Rage Fist", () => { await game.reload.reloadSession(); + // outsped and oneshot means power rmains same as prior game.move.select(Moves.RAGE_FIST); await game.phaseInterceptor.to("MoveEndPhase"); - expect(move.calculateBattlePower).toHaveLastReturnedWith(250); + expect(move.calculateBattlePower).toHaveLastReturnedWith(150); }); });