We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84b701d commit c89f719Copy full SHA for c89f719
ci/src/task.rs
@@ -58,7 +58,7 @@ pub fn test(args: TestArgs) -> bool {
58
}
59
60
if let Some(ref features) = features {
61
- command.args(&["--features", features]);
+ command.args(["--features", features]);
62
63
64
println!("running {:?}", command);
src/filter/mod.rs
@@ -151,7 +151,7 @@ impl Filter {
151
152
153
if let Some(filter) = self.filter.as_ref() {
154
- if !filter.is_match(&*record.args().to_string()) {
+ if !filter.is_match(&record.args().to_string()) {
155
return false;
156
157
0 commit comments