From 6095f8367cdacdc4aaa800be76b851b936597ec9 Mon Sep 17 00:00:00 2001 From: torranx Date: Mon, 9 Sep 2024 19:56:43 +0800 Subject: [PATCH] update test --- src/test/moves/throat_chop.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/moves/throat_chop.test.ts b/src/test/moves/throat_chop.test.ts index a5057a30d57..151aec58b38 100644 --- a/src/test/moves/throat_chop.test.ts +++ b/src/test/moves/throat_chop.test.ts @@ -50,6 +50,6 @@ describe("Moves - Throat Chop", () => { await game.setTurnOrder([BattlerIndex.PLAYER, BattlerIndex.ENEMY]); await game.phaseInterceptor.to("MoveEndPhase"); - expect(game.scene.getEnemyPokemon()!.hp).toBeLessThan(game.scene.getEnemyPokemon()!.getMaxHp()); + expect(game.scene.getEnemyPokemon()!.isFullHp()).toBe(false); }, TIMEOUT); });