diff options
| author | unexge <unexge@gmail.com> | 2023-02-18 19:42:09 +0000 |
|---|---|---|
| committer | unexge <unexge@gmail.com> | 2023-03-08 08:51:52 +0000 |
| commit | e7065efc764316dae08376ca2edbb8617c425911 (patch) | |
| tree | 9171b7e8d0b50ceb30f4377b60fce3c846056e18 | |
| parent | b4b2b1235a07aeb5f6d6e345e23d8fa4873cda08 (diff) | |
| download | rust-e7065efc764316dae08376ca2edbb8617c425911.tar.gz rust-e7065efc764316dae08376ca2edbb8617c425911.zip | |
Revert `tests/ui/filter_map_next_fixable.rs`
Co-authored-by: Weihang Lo <me@weihanglo.tw>
| -rw-r--r-- | tests/ui/filter_map_next_fixable.fixed | 2 | ||||
| -rw-r--r-- | tests/ui/filter_map_next_fixable.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/filter_map_next_fixable.fixed b/tests/ui/filter_map_next_fixable.fixed index 0568eff41b5..462d46169fc 100644 --- a/tests/ui/filter_map_next_fixable.fixed +++ b/tests/ui/filter_map_next_fixable.fixed @@ -1,7 +1,7 @@ // run-rustfix #![warn(clippy::all, clippy::pedantic)] -#![allow(unused, clippy::missing_assert_message)] +#![allow(unused)] fn main() { let a = ["1", "lol", "3", "NaN", "5"]; diff --git a/tests/ui/filter_map_next_fixable.rs b/tests/ui/filter_map_next_fixable.rs index b0722ee8258..2ea00cf7307 100644 --- a/tests/ui/filter_map_next_fixable.rs +++ b/tests/ui/filter_map_next_fixable.rs @@ -1,7 +1,7 @@ // run-rustfix #![warn(clippy::all, clippy::pedantic)] -#![allow(unused, clippy::missing_assert_message)] +#![allow(unused)] fn main() { let a = ["1", "lol", "3", "NaN", "5"]; |
