Skip to content

Commit c89f719

Browse files
committed
Fix clippy lints
1 parent 84b701d commit c89f719

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ci/src/task.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ pub fn test(args: TestArgs) -> bool {
5858
}
5959

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

6464
println!("running {:?}", command);

src/filter/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ impl Filter {
151151
}
152152

153153
if let Some(filter) = self.filter.as_ref() {
154-
if !filter.is_match(&*record.args().to_string()) {
154+
if !filter.is_match(&record.args().to_string()) {
155155
return false;
156156
}
157157
}

0 commit comments

Comments
 (0)