From 7d2cae328b6d3d685c57ab7d86964479a6b5a3cd Mon Sep 17 00:00:00 2001 From: Wendy Wang Date: Sun, 18 Sep 2022 16:20:32 +0200 Subject: [PATCH] Fixing tests --- evennia/contrib/grid/ingame_map_display/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/evennia/contrib/grid/ingame_map_display/tests.py b/evennia/contrib/grid/ingame_map_display/tests.py index 9c75d2a018..9d505575c5 100644 --- a/evennia/contrib/grid/ingame_map_display/tests.py +++ b/evennia/contrib/grid/ingame_map_display/tests.py @@ -27,9 +27,9 @@ class TestIngameMap(BaseEvenniaCommandTest): def test_west_room_map_room(self): self.char1.location = self.west_room map_here = ingame_map_display.Map(self.char1).show_map() - self.assertEqual(map_here.strip(), "[|[x|co|n]--[ ]") + self.assertEqual(map_here.strip(), '[|n|[x|co|n]|n--[|n ]|n') def test_east_room_map_room(self): self.char1.location = self.east_room map_here = ingame_map_display.Map(self.char1).show_map() - self.assertEqual(map_here.strip(), "[ ]--[|[x|co|n]") \ No newline at end of file + self.assertEqual(map_here.strip(), '[|n ]|n--[|n|[x|co|n]|n') \ No newline at end of file