Skip to content

Commit

Permalink
style(tests): update formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Oct 19, 2021
1 parent 41e91a3 commit e1bccf1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions git-cliff-core/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit e1bccf1

Please sign in to comment.