From 057ca8bf3485b1d3b4d41e186780b9ee4d689f3c Mon Sep 17 00:00:00 2001 From: Guillaume Pasquet Date: Mon, 18 Nov 2019 05:57:17 +0000 Subject: Fix formatting --- src/world.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/world.rs') 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), }; } -- cgit v1.2.3