diff --git a/games/ground/examples/h2-panel.rs b/games/ground/examples/h2-panel.rs index be6680b..dabcc8d 100644 --- a/games/ground/examples/h2-panel.rs +++ b/games/ground/examples/h2-panel.rs @@ -142,7 +142,10 @@ fn sweep(variant: Variant, players: u8, reactive: bool, force_global: bool) -> C } } assert_eq!(c.games, GAMES, "{players}p {variant:?}: short cell"); - assert_eq!(c.played, GAMES, "{players}p {variant:?}: games did not finish"); + assert_eq!( + c.played, GAMES, + "{players}p {variant:?}: games did not finish" + ); c } @@ -193,6 +196,9 @@ fn main() { for players in [3u8, 4] { let scoped = sweep(Variant::H2ScopedProblemStress, players, false, false); let global = sweep(Variant::H2ScopedProblemStress, players, false, true); - println!(" {players}p {:>4} {:>4}", scoped.won, global.won); + println!( + " {players}p {:>4} {:>4}", + scoped.won, global.won + ); } }