diff options
| author | a14m <[email protected]> | 2021-04-08 02:11:53 +0200 |
|---|---|---|
| committer | a14m <[email protected]> | 2021-04-08 02:11:53 +0200 |
| commit | a2d138bdd8b119944fef7edcd51335e8a596222e (patch) | |
| tree | 44f9c4a80c20212713e57317bf8376cb647bf908 /CLI/rust/src/game_of_life | |
| parent | 7c3b1bd867271ecbae8f0e84b36835b4e6f8021e (diff) | |
Fix linting issues
Diffstat (limited to 'CLI/rust/src/game_of_life')
| -rw-r--r-- | CLI/rust/src/game_of_life/simulation/universe.rs | 6 |
1 files 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<isize> for Universe { |
