From ca8ab86e3e4a9a0f2ba27d90f77f3c4fcf371b85 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Wed, 11 Dec 2024 21:48:21 +0100 Subject: [PATCH] Fix with new Panel Keys --- worlds/witness/test/test_early_good_item.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/worlds/witness/test/test_early_good_item.py b/worlds/witness/test/test_early_good_item.py index 61f956ca6404..0f9d93fac256 100644 --- a/worlds/witness/test/test_early_good_item.py +++ b/worlds/witness/test/test_early_good_item.py @@ -67,8 +67,9 @@ def test_early_good_item(self) -> None: self.assertTrue(back_left.item is not None, "Somehow, no item got placed on Tutorial Back Left.") + doors_and_panel_keys = self.world.item_name_groups["Doors"] | self.world.item_name_groups["Panel Keys"] self.assertTrue( - cast_not_none(back_left.item).name in self.world.item_name_groups["Doors"], + cast_not_none(back_left.item).name in doors_and_panel_keys, "Early Good Item was on, yet no Door item ended up on Tutorial Back Left.", )