From 25761f763234b12e475bf8dcbd59a1895c631855 Mon Sep 17 00:00:00 2001 From: eucalyptusJ <88509866+eucalyptusJ@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:00:24 -0400 Subject: [PATCH] Fix enemy Pokemon not receiving any moves in tests --- src/test/moves/trick.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/moves/trick.test.ts b/src/test/moves/trick.test.ts index 42e3f44c61c..cc5872355c6 100644 --- a/src/test/moves/trick.test.ts +++ b/src/test/moves/trick.test.ts @@ -5,12 +5,12 @@ import { Species } from "#enums/species"; import { afterEach, beforeAll, beforeEach, describe, expect, it } from "vitest"; import { TurnEndPhase } from "#app/phases/turn-end-phase"; import { PokemonHeldItemModifier } from "#app/modifier/modifier.js"; -import { SPLASH_ONLY } from "#test/utils/testUtils"; import { deepCopy } from "#app/utils"; import { Abilities } from "#app/enums/abilities.js"; const TIMEOUT = 20000; const TRICK_ONLY = [Moves.TRICK, Moves.TRICK, Moves.TRICK, Moves.TRICK]; +const SPLASH_ONLY = [Moves.SPLASH, Moves.SPLASH, Moves.SPLASH, Moves.SPLASH]; /** * Gets the PokemonHeldItemModifier for a given item ID, if the Pokemon has that item