-
Notifications
You must be signed in to change notification settings - Fork 43
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
increase test coverage of cairo-native-run
#593
Conversation
@edg-l Concerning |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #593 +/- ##
==========================================
+ Coverage 88.63% 89.03% +0.39%
==========================================
Files 109 109
Lines 34905 35174 +269
==========================================
+ Hits 30938 31316 +378
+ Misses 3967 3858 -109 ☔ View full report in Codecov by Sentry. |
src/bin/cairo-native-run.rs
Outdated
let felt = jitvalue_to_felt(value); | ||
felts.extend(felt); | ||
let mut felts = vec![(*tag).into()]; | ||
// felts.push((*tag).into()); |
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.
Why did you comment that line?
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.
Sorry, we can just remove it as the vec is initialized on the line before with the tag. Just fixed
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.
Check comment
* increase test coverage of cairo-native-run * add unit tests for result_to_runresult * Update src/bin/cairo-native-run.rs
Checklist