diff --git a/test/general/test_ids.py b/test/general/test_ids.py index 98c41b67b17..fefbc207856 100644 --- a/test/general/test_ids.py +++ b/test/general/test_ids.py @@ -42,7 +42,7 @@ def test_reserved_items(self): with self.subTest(game=gamename): if gamename == "Archipelago": for item_id in world_type.item_id_to_name: - self.assertLess(item_id, 0) + self.assertLessEqual(item_id, 0) else: for item_id in world_type.item_id_to_name: self.assertGreater(item_id, 0) @@ -53,7 +53,7 @@ def test_reserved_locations(self): with self.subTest(game=gamename): if gamename == "Archipelago": for location_id in world_type.location_id_to_name: - self.assertLess(location_id, 0) + self.assertLessEqual(location_id, 0) else: for location_id in world_type.location_id_to_name: self.assertGreater(location_id, 0)