diff --git a/src/test/moves/glaive_rush.test.ts b/src/test/moves/glaive_rush.test.ts index f2c306f97150..8e26f6a2c612 100644 --- a/src/test/moves/glaive_rush.test.ts +++ b/src/test/moves/glaive_rush.test.ts @@ -49,7 +49,7 @@ describe("Moves - Glaive Rush", () => { await game.phaseInterceptor.to(TurnEndPhase); game.doAttack(getMovePosition(game.scene, 0, Moves.SHADOW_SNEAK)); await game.phaseInterceptor.to(DamagePhase); - expect(enemy.hp).toBeLessThanOrEqual(1000 - (damageDealt * 3)); + expect(enemy.hp).toBeLessThanOrEqual(999 - (damageDealt * 3)); }, 20000);