Fix broken tests

This commit is contained in:
Yohann D'ANELLO
2020-11-11 16:58:20 +01:00
parent ac22aef860
commit 8db00bcaa6
3 changed files with 19 additions and 10 deletions

View File

@ -19,7 +19,7 @@ class TestInterfaces(unittest.TestCase):
Try to load a map from a file.
"""
m = Map.load("resources/example_map.txt")
self.assertEqual(m.width, 52)
self.assertEqual(m.width, 44)
self.assertEqual(m.height, 17)
def test_tiles(self) -> None: