Skip to content

Commit 5768ca0

Browse files
committed
[meta] fix clippy warnings on Rust 1.63
1 parent 5ea5622 commit 5768ca0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cargo-nextest/src/output.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub(crate) struct OutputContext {
5151
pub(crate) color: Color,
5252
}
5353

54-
#[derive(Copy, Clone, Debug, PartialEq, ArgEnum)]
54+
#[derive(Copy, Clone, Debug, PartialEq, Eq, ArgEnum)]
5555
#[must_use]
5656
pub enum Color {
5757
Auto,

nextest-filtering/src/errors.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ impl FilterExpressionParseErrors {
2727
}
2828

2929
/// An individual error that occurred while parsing a filter expression.
30-
#[derive(Clone, Debug, Error, Diagnostic, PartialEq)]
30+
#[derive(Clone, Debug, Error, Diagnostic, PartialEq, Eq)]
3131
#[non_exhaustive]
3232
pub enum ParseSingleError {
3333
/// An invalid regex was encountered.

0 commit comments

Comments
 (0)