Skip to content

Commit 789305d

Browse files
committed
Use modern tool lints for clippy
1 parent 4a9e887 commit 789305d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/set.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,8 +1612,7 @@ mod tests {
16121612
let set_c: IndexSet<_> = (0..6).collect();
16131613
let set_d: IndexSet<_> = (3..9).rev().collect();
16141614

1615-
// FIXME: #[allow(clippy::eq_op)] in Rust 1.31
1616-
#[cfg_attr(feature = "cargo-clippy", allow(renamed_and_removed_lints, eq_op))]
1615+
#[allow(clippy::eq_op)]
16171616
{
16181617
assert_eq!(&set_a & &set_a, set_a);
16191618
assert_eq!(&set_a | &set_a, set_a);

0 commit comments

Comments
 (0)