From e1bccf1548967e8beb990c407b44e2c8d910732c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orhun=20Parmaks=C4=B1z?= Date: Tue, 19 Oct 2021 21:36:24 +0300 Subject: [PATCH] style(tests): update formatting --- git-cliff-core/tests/integration_test.rs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/git-cliff-core/tests/integration_test.rs b/git-cliff-core/tests/integration_test.rs index 00c93ed651..7c5253a68a 100644 --- a/git-cliff-core/tests/integration_test.rs +++ b/git-cliff-core/tests/integration_test.rs @@ -64,9 +64,15 @@ fn generate_changelog() -> Result<()> { commits: vec![ Commit::new(String::from("abc123"), String::from("feat: add xyz")), Commit::new(String::from("abc124"), String::from("feat: add zyx")), - Commit::new(String::from("abc124"), String::from("feat(random-scope): add random feature")), + Commit::new( + String::from("abc124"), + String::from("feat(random-scope): add random feature"), + ), Commit::new(String::from("def789"), String::from("invalid commit")), - Commit::new(String::from("def789"), String::from("feat(big-feature)!: this is a breaking change")), + Commit::new( + String::from("def789"), + String::from("feat(big-feature)!: this is a breaking change"), + ), Commit::new(String::from("qwerty"), String::from("fix: fix abc")), Commit::new( String::from("qwop"),