-
Notifications
You must be signed in to change notification settings - Fork 21
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
feat: Update MultiTest to 2.2.0 #453
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## feat/replies #453 +/- ##
================================================
+ Coverage 72.17% 72.36% +0.18%
================================================
Files 63 63
Lines 3810 3825 +15
================================================
+ Hits 2750 2768 +18
+ Misses 1060 1057 -3 ☔ View full report in Codecov by Sentry. |
a551baf
to
180165a
Compare
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.
Looks good! Just two minor comments from me
sylvia/tests/reply_dispatch.rs
Outdated
#[sv::payload(raw)] _payload: Binary, | ||
// _first_part_payload: u32, | ||
// _second_part_payload: String, | ||
_first_part_payload: u32, |
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.
We could make sure that the deserialization works as expected here
sylvia/tests/reply_dispatch.rs
Outdated
// Payload is not currently forwarded in the MultiTest. | ||
// _instantiate_payload: InstantiatePayload, | ||
#[sv::payload(raw)] _payload: Binary, | ||
_instantiate_payload: InstantiatePayload, |
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.
We could make sure that the deserialization works as expected here
Uncomment auto deserialization of payload in tests. Add test case for deserialization of custom data type.
22d82ed
to
da4a273
Compare
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.
👍
Uncomment auto deserialization of payload in tests. Add test case for deserialization of custom data type.