mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Fixing tests
This commit is contained in:
parent
0fb078c5ab
commit
7d2cae328b
1 changed files with 2 additions and 2 deletions
|
|
@ -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]")
|
||||
self.assertEqual(map_here.strip(), '[|n ]|n--[|n|[x|co|n]|n')
|
||||
Loading…
Add table
Add a link
Reference in a new issue