From a2d138bdd8b119944fef7edcd51335e8a596222e Mon Sep 17 00:00:00 2001 From: a14m Date: Thu, 8 Apr 2021 02:11:53 +0200 Subject: Fix linting issues --- CLI/rust/src/game_of_life/simulation/universe.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CLI/rust/src/game_of_life/simulation/universe.rs b/CLI/rust/src/game_of_life/simulation/universe.rs index 6059dc6..c222981 100644 --- a/CLI/rust/src/game_of_life/simulation/universe.rs +++ b/CLI/rust/src/game_of_life/simulation/universe.rs @@ -74,9 +74,11 @@ mod display { }; let universe = universe(opts); - assert_eq!(universe.to_string(), ".....\n.XXX.\n.....\nInput: http://example.com") + assert_eq!( + universe.to_string(), + ".....\n.XXX.\n.....\nInput: http://example.com" + ) } - } impl Index for Universe { -- cgit v1.2.3