Skip to content

Commit

Permalink
fix: rustfmt trademark_disclaimer.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewpereira committed Dec 23, 2022
1 parent c019fcf commit f91fe51
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion clomonitor-core/src/linter/checks/trademark_disclaimer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ mod tests {
#[test]
fn trademark_disclaimer_match() {
assert!(TRADEMARK_DISCLAIMER.is_match("https://www.linuxfoundation.org/trademark-usage"));
assert!(TRADEMARK_DISCLAIMER.is_match("https://www.linuxfoundation.org/legal/trademark-usage"));
assert!(
TRADEMARK_DISCLAIMER.is_match("https://www.linuxfoundation.org/legal/trademark-usage")
);
assert!(TRADEMARK_DISCLAIMER.is_match("https://linuxfoundation.org/trademark-usage"));
assert!(TRADEMARK_DISCLAIMER.is_match("https://linuxfoundation.org/legal/trademark-usage"));
assert!(TRADEMARK_DISCLAIMER.is_match(
Expand Down

0 comments on commit f91fe51

Please sign in to comment.