From fee44b03f91f245c4224ad680d3fb0047b5d5302 Mon Sep 17 00:00:00 2001 From: NightKev <34855794+DayKev@users.noreply.github.com> Date: Fri, 4 Oct 2024 00:06:00 -0700 Subject: [PATCH] Fix linting Oops missed this one --- src/test/moves/diamond_storm.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/moves/diamond_storm.test.ts b/src/test/moves/diamond_storm.test.ts index 417a4c39cfc..6e5be2a790d 100644 --- a/src/test/moves/diamond_storm.test.ts +++ b/src/test/moves/diamond_storm.test.ts @@ -24,7 +24,7 @@ describe("Moves - Diamond Storm", () => { beforeEach(() => { game = new GameManager(phaserGame); game.override - .moveset([Moves.DIAMOND_STORM]) + .moveset([ Moves.DIAMOND_STORM ]) .battleType("single") .enemySpecies(Species.MAGIKARP) .enemyAbility(Abilities.BALL_FETCH)