clippy: bless tests

This commit is contained in:
klensy 2024-04-26 13:47:14 +03:00
parent 7d9f970d4e
commit a8e0bcb336
5 changed files with 6 additions and 6 deletions

View File

@ -54,7 +54,7 @@ help: replace the `Into` implementation with `From<ExplicitPaths>`
LL ~ impl core::convert::From<crate::ExplicitPaths> for bool { LL ~ impl core::convert::From<crate::ExplicitPaths> for bool {
LL ~ fn from(mut val: crate::ExplicitPaths) -> Self { LL ~ fn from(mut val: crate::ExplicitPaths) -> Self {
LL ~ let in_closure = || val.0; LL ~ let in_closure = || val.0;
LL | LL |
LL ~ val.0 = false; LL ~ val.0 = false;
LL ~ val.0 LL ~ val.0
| |

View File

@ -71,7 +71,7 @@ LL | result
help: return the expression directly help: return the expression directly
| |
LL ~ LL ~
LL | LL |
LL ~ (match self { LL ~ (match self {
LL + E::A(x) => x, LL + E::A(x) => x,
LL + E::B(x) => x, LL + E::B(x) => x,

View File

@ -17,7 +17,7 @@ LL ~ if let Some(<stripped>) = s.strip_prefix("ab") {
LL ~ str::to_string(<stripped>); LL ~ str::to_string(<stripped>);
LL | LL |
LL ~ <stripped>.to_string(); LL ~ <stripped>.to_string();
LL | LL |
LL ~ str::to_string(<stripped>); LL ~ str::to_string(<stripped>);
LL ~ <stripped>.to_string(); LL ~ <stripped>.to_string();
| |
@ -39,7 +39,7 @@ LL ~ if let Some(<stripped>) = s.strip_suffix("bc") {
LL ~ str::to_string(<stripped>); LL ~ str::to_string(<stripped>);
LL | LL |
LL ~ <stripped>.to_string(); LL ~ <stripped>.to_string();
LL | LL |
LL ~ str::to_string(<stripped>); LL ~ str::to_string(<stripped>);
LL ~ <stripped>.to_string(); LL ~ <stripped>.to_string();
| |

View File

@ -27,7 +27,7 @@ LL | || do_nothing(value)
LL | || }); LL | || });
| ||______^- help: try: `if let Ok(value) = x.field { ... }` | ||______^- help: try: `if let Ok(value) = x.field { ... }`
| |______| | |______|
| |
error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()` error: called `map(f)` on an `Result` value where `f` is a closure that returns the unit type `()`
--> tests/ui/result_map_unit_fn_unfixable.rs:37:5 --> tests/ui/result_map_unit_fn_unfixable.rs:37:5

View File

@ -85,7 +85,7 @@ LL | | ///! b
help: use an inner doc comment to document the parent module or crate help: use an inner doc comment to document the parent module or crate
| |
LL ~ //! a LL ~ //! a
LL | LL |
LL ~ //! b LL ~ //! b
| |