We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
MockContext
Some of the tests are written while accessing MockContext fields. Field access is discouraged over associated methods.
The following should be refactored to use an associated method, e.g., MockContext::ibc_events(&self).
MockContext::ibc_events(&self)
ibc-rs/ibc-testkit/tests/core/ics04_channel/timeout.rs
Lines 380 to 385 in d5e8314
till v0.49.1
The text was updated successfully, but these errors were encountered:
rnbguy
Successfully merging a pull request may close this issue.
Bug Summary
Some of the tests are written while accessing
MockContext
fields. Field access is discouraged over associated methods.Details
The following should be refactored to use an associated method, e.g.,
MockContext::ibc_events(&self)
.ibc-rs/ibc-testkit/tests/core/ics04_channel/timeout.rs
Lines 380 to 385 in d5e8314
Version
till v0.49.1
The text was updated successfully, but these errors were encountered: