Skip to content

Commit

Permalink
Fix clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
jplatte committed Nov 7, 2022
1 parent 84b701d commit c89f719
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/src/task.rs
Expand Up @@ -58,7 +58,7 @@ pub fn test(args: TestArgs) -> bool {
}

if let Some(ref features) = features {
command.args(&["--features", features]);
command.args(["--features", features]);
}

println!("running {:?}", command);
Expand Down
2 changes: 1 addition & 1 deletion src/filter/mod.rs
Expand Up @@ -151,7 +151,7 @@ impl Filter {
}

if let Some(filter) = self.filter.as_ref() {
if !filter.is_match(&*record.args().to_string()) {
if !filter.is_match(&record.args().to_string()) {
return false;
}
}
Expand Down

0 comments on commit c89f719

Please sign in to comment.