From 07201ad8f4eb3d92b24f926f15ce49544559e807 Mon Sep 17 00:00:00 2001 From: DustinLin Date: Thu, 15 Aug 2024 13:01:37 -0400 Subject: [PATCH] correcting un-run test --- src/test/moves/parting_shot.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/moves/parting_shot.test.ts b/src/test/moves/parting_shot.test.ts index b8b0faba4ce..658d64a57dd 100644 --- a/src/test/moves/parting_shot.test.ts +++ b/src/test/moves/parting_shot.test.ts @@ -198,8 +198,8 @@ describe("Moves - Parting Shot", () => { await game.phaseInterceptor.to(BerryPhase, false); const battleStatsOpponent = game.scene.currentBattle.enemyParty[0].summonData.battleStats; - expect(battleStatsOpponent[BattleStat.ATK]).toBe(0); - expect(battleStatsOpponent[BattleStat.SPATK]).toBe(0); + expect(battleStatsOpponent[BattleStat.ATK]).toBe(-1); + expect(battleStatsOpponent[BattleStat.SPATK]).toBe(-1); expect(game.scene.getPlayerField()[0].species.speciesId).toBe(Species.MEOWTH); }, TIMEOUT );