This commit is contained in:
Max Bradbury 2020-04-11 18:24:43 +01:00
parent 2f3ee8f302
commit 2e4114d4de
1 changed files with 1 additions and 1 deletions

View File

@ -721,7 +721,7 @@ fn exit_from_string(string: String) -> Exit {
fn test_exit_from_string() {
assert_eq!(
exit_from_string("a 12,13".to_string()),
Exit { room: "a".to_string(), position: Position { x: 12, y: 13}}
Exit { room: "a".to_string(), position: Position { x: 12, y: 13 } }
);
}