From 00c93ef8ab9b56ef1531802e62ab9386b324b5b3 Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Thu, 29 May 2025 15:28:35 -0400 Subject: [PATCH] Fix first-attack-double-power.test.ts --- test/moves/first-attack-double-power.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/moves/first-attack-double-power.test.ts b/test/moves/first-attack-double-power.test.ts index 4f93058955b..f3bcc1a3eed 100644 --- a/test/moves/first-attack-double-power.test.ts +++ b/test/moves/first-attack-double-power.test.ts @@ -1,5 +1,5 @@ import { BattlerIndex } from "#app/battle"; -import { allMoves } from "#app/data/moves/move"; +import { allMoves } from "#app/data/data-lists.ts"; import { Abilities } from "#enums/abilities"; import { BattleType } from "#enums/battle-type"; import { Moves } from "#enums/moves"; @@ -59,7 +59,7 @@ describe.each<{ name: string; move: Moves }>([ expect(powerSpy).toHaveLastReturnedWith(allMoves[move].power * 2); }); - + it("should only consider the selected target in Double Battles", async () => { game.override.battleStyle("double").moveset([move, Moves.SPLASH]); await game.classicMode.startBattle([Species.FEEBAS, Species.MILOTIC]);