-
Notifications
You must be signed in to change notification settings - Fork 9
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
Minor cleanup and formatting fixes #445
Conversation
Conformance comparison report
Number passing in both: 5731 Number failing in both: 612 Number passing in Base (05d3fc8) but now fail: 0 Number failing in Base (05d3fc8) but now pass: 0 |
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #445 +/- ##
==========================================
+ Coverage 79.07% 79.10% +0.03%
==========================================
Files 65 65
Lines 17531 17423 -108
Branches 17531 17423 -108
==========================================
- Hits 13862 13782 -80
+ Misses 3099 3075 -24
+ Partials 570 566 -4 ☔ View full report in Codecov by Sentry. |
@@ -118,22 +118,16 @@ impl EvalPathComponent { | |||
impl EvalExpr for EvalPath { | |||
fn evaluate<'a>(&'a self, bindings: &'a Tuple, ctx: &'a dyn EvalContext) -> Cow<'a, Value> { | |||
let value = self.expr.evaluate(bindings, ctx); | |||
let mut path_componenents = self.components.iter(); |
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.
there's a clippy warning that looks unrelated to this PR's changes on L3:
unused import:
BorrowMut
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.
I think that'll be fixed by the rebase over #443
3ebffda
to
002d679
Compare
Clippy, Format, and other small cleanup.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.