Core: increment version

This commit is contained in:
Fabian Dill
2022-01-30 03:45:21 +01:00
parent e5af7d11cc
commit 6210630ce2
3 changed files with 4 additions and 4 deletions

View File

@@ -32,7 +32,7 @@ class TestIDs(unittest.TestCase):
self.assertLess(location_id, 2**53)
def testReservedItems(self):
"""negative IDs are reserved to the special "Archipelago" world."""
"""negative item IDs are reserved to the special "Archipelago" world."""
for gamename, world_type in AutoWorldRegister.world_types.items():
with self.subTest(game=gamename):
if gamename == "Archipelago":
@@ -43,7 +43,7 @@ class TestIDs(unittest.TestCase):
self.assertGreater(item_id, 0)
def testReservedLocations(self):
"""negative IDs are reserved to the special "Archipelago" world."""
"""negative location IDs are reserved to the special "Archipelago" world."""
for gamename, world_type in AutoWorldRegister.world_types.items():
with self.subTest(game=gamename):
if gamename == "Archipelago":