Example map was moved

This commit is contained in:
Yohann D'ANELLO 2020-11-10 20:37:01 +01:00
parent 9b925672ca
commit f9c3fc1517
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ class TestEntities(unittest.TestCase):
""" """
Load example map that can be used in tests. Load example map that can be used in tests.
""" """
self.map = Map.load("example_map.txt") self.map = Map.load("resources/example_map.txt")
def test_basic_entities(self) -> None: def test_basic_entities(self) -> None:
""" """

View File

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