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.", )