From 745714ea285142c3c4d4c4aaf29766991fe7bea7 Mon Sep 17 00:00:00 2001 From: Bertie690 Date: Mon, 21 Apr 2025 18:22:52 -0400 Subject: [PATCH] Fixed test --- test/abilities/harvest.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/abilities/harvest.test.ts b/test/abilities/harvest.test.ts index d6c1fe4b568..d3db952c5be 100644 --- a/test/abilities/harvest.test.ts +++ b/test/abilities/harvest.test.ts @@ -167,7 +167,10 @@ describe("Abilities - Harvest", () => { await game.phaseInterceptor.to("TurnEndPhase"); // recovered a starf - expectBerriesContaining({ name: "BERRY", type: BerryType.STARF, count: 3 }); + expectBerriesContaining( + { name: "BERRY", type: BerryType.LUM, count: 2 }, + { name: "BERRY", type: BerryType.STARF, count: 3 }, + ); }); it("does nothing if all berries are capped", async () => {