Skip to content

Commit

Permalink
refactor(clippy): apply clippy suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Aug 13, 2023
1 parent a814bbe commit 4c09759
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion git-cliff-core/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ fn generate_changelog() -> Result<()> {
filter_unconventional: Some(true),
split_commits: Some(false),
commit_preprocessors: Some(vec![TextProcessor {
pattern: Regex::new(r#"\(fixes (#[1-9]+)\)"#).unwrap(),
pattern: Regex::new(r"\(fixes (#[1-9]+)\)").unwrap(),
replace: Some(String::from("[closes Issue${1}]")),
replace_command: None,
}]),
Expand Down

0 comments on commit 4c09759

Please sign in to comment.