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 066c219 commit d55d269Copy full SHA for d55d269
ci/src/task.rs
@@ -58,7 +58,7 @@ pub fn test(args: TestArgs) -> bool {
58
}
59
60
if let Some(features) = &features {
61
- command.args(&["--features", features]);
+ command.args(["--features", features]);
62
63
64
println!("running {:?}", command);
src/fmt/writer/mod.rs
@@ -165,6 +165,7 @@ impl Builder {
165
166
167
/// Whether or not to capture logs for `cargo test`.
168
+ #[allow(clippy::wrong_self_convention)]
169
pub(crate) fn is_test(&mut self, is_test: bool) -> &mut Self {
170
self.is_test = is_test;
171
self
0 commit comments