diff options
author | Guillaume Pasquet <dev@etenil.net> | 2019-11-18 05:57:17 +0000 |
---|---|---|
committer | Guillaume Pasquet <dev@etenil.net> | 2019-11-18 05:57:17 +0000 |
commit | 057ca8bf3485b1d3b4d41e186780b9ee4d689f3c (patch) | |
tree | 3a0dee1daca3b5ab5bfb309477674e5cc652bec6 /src/world.rs | |
parent | dab25fd352aaf46ec098e1c77494a36b2638ed07 (diff) |
Fix formatting
Diffstat (limited to 'src/world.rs')
-rw-r--r-- | src/world.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/world.rs b/src/world.rs index 96c928d..369fd59 100644 --- a/src/world.rs +++ b/src/world.rs @@ -471,16 +471,16 @@ mod tests { let exp_horz = vec![ Corridor::new((0, 0), 5, CorridorType::Horizontal), - Corridor::new((5, 0), 5, CorridorType::Vertical) + Corridor::new((5, 0), 5, CorridorType::Vertical), ]; let exp_vert = vec![ Corridor::new((0, 0), 5, CorridorType::Vertical), - Corridor::new((0, 5), 5, CorridorType::Horizontal) + Corridor::new((0, 5), 5, CorridorType::Horizontal), ]; match cor[0].direction { CorridorType::Horizontal => assert_eq!(cor, exp_horz), - CorridorType::Vertical => assert_eq!(cor, exp_vert) + CorridorType::Vertical => assert_eq!(cor, exp_vert), }; } |