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