From ec2e873d73a3f820fe301b682cb100d07f44994b Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Mon, 2 Jul 2018 09:28:02 +0200 Subject: Fix formatting with cargo fmt --- testing/benches/all.rs | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) (limited to 'testing') diff --git a/testing/benches/all.rs b/testing/benches/all.rs index 862bd06..a52374c 100644 --- a/testing/benches/all.rs +++ b/testing/benches/all.rs @@ -37,10 +37,22 @@ fn teams(b: &mut criterion::Bencher) { let teams = Teams { year: 2015, teams: vec![ - Team { name: "Jiangsu".into(), score: 43 }, - Team { name: "Beijing".into(), score: 27 }, - Team { name: "Guangzhou".into(), score: 22 }, - Team { name: "Shandong".into(), score: 12 }, + Team { + name: "Jiangsu".into(), + score: 43, + }, + Team { + name: "Beijing".into(), + score: 27, + }, + Team { + name: "Guangzhou".into(), + score: 22, + }, + Team { + name: "Shandong".into(), + score: 12, + }, ], }; b.iter(|| teams.render().unwrap()); -- cgit