Fixes a typo in expected output

Blank floor is ., not #
This commit is contained in:
Seabass 2019-10-05 13:22:50 -04:00
parent 6ac2a8190c
commit 4dbf9b00c1
1 changed files with 1 additions and 1 deletions

View File

@ -15,5 +15,5 @@ let TestFloorToString() =
[ Wall Corner; Wall EW; Wall Corner ] [ Wall Corner; Wall EW; Wall Corner ]
] ]
let actual = floorToString floor let actual = floorToString floor
let expected = "+-+\n|#|\n+-+\n" let expected = "+-+\n|.|\n+-+\n"
Assert.AreEqual(actual, expected) Assert.AreEqual(actual, expected)