Corrected missing quotes on a BerryPhase in Toxic.test.

This commit is contained in:
Lance Xing 2024-09-25 22:19:55 -07:00
parent 41117b7b6f
commit df5fdef664

View File

@ -57,7 +57,7 @@ describe("Moves - Toxic", () => {
game.move.select(Moves.TOXIC);
await game.setTurnOrder([BattlerIndex.ENEMY, BattlerIndex.PLAYER]);
await game.phaseInterceptor.to(BerryPhase, false);
await game.phaseInterceptor.to("BerryPhase", false);
expect(game.scene.getEnemyPokemon()!.status?.effect).toBe(StatusEffect.TOXIC);
});