-
-
Notifications
You must be signed in to change notification settings - Fork 684
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix clippy #1927
fix clippy #1927
Conversation
if it is not performance critical i'd rather have boxing T_T |
In this case there are a lot of tests that would need to be adjusted |
@PSeitz let's adjust the tests |
Codecov Report
📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more @@ Coverage Diff @@
## main #1927 +/- ##
========================================
Coverage 94.47% 94.47%
========================================
Files 309 309
Lines 56617 56775 +158
========================================
+ Hits 53489 53639 +150
- Misses 3128 3136 +8
... and 1 file with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
5a70efb
to
2cf8ffb
Compare
src/aggregation/agg_tests.rs
Outdated
@@ -590,7 +590,7 @@ fn test_aggregation_invalid_requests() -> crate::Result<()> { | |||
Ok(()) | |||
} | |||
|
|||
#[cfg(all(test, feature = "unstable"))] | |||
//#[cfg(all(test, feature = "unstable"))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a mistake i believe?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
approved to make the exchange smooth, but have a look at the comment in agg_test.
I think you commented out some feature fence by mistake.
fix clippy