From 6d2c4f3740d86b801233b4b582b84cd7153c31e9 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Sat, 9 Nov 2024 23:39:45 -0500 Subject: [PATCH] Fixed Gastro Acid test using `game.override.battleType(null)` --- src/test/moves/gastro_acid.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/moves/gastro_acid.test.ts b/src/test/moves/gastro_acid.test.ts index fdd75b90b13..ec9246c855c 100644 --- a/src/test/moves/gastro_acid.test.ts +++ b/src/test/moves/gastro_acid.test.ts @@ -62,7 +62,7 @@ describe("Moves - Gastro Acid", () => { }); it("fails if used on an enemy with an already-suppressed ability", async () => { - game.override.battleType(null); + game.override.battleType("single"); await game.startBattle();