-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Chore/feeds test suite cleanup #15215
Conversation
AER Report: Operator UI CIaer_workflow , commit , Breaking Changes GQL Check 1. Workflow failed to complete successfully:[convictional/trigger-workflow-and-wait@f69fa9e]Source of Error:
Why: The triggered workflow did not complete successfully. The conclusion status was Suggested fix: Investigate the logs of the triggered workflow at https://github.com/smartcontractkit/operator-ui/actions/runs/11820519907 to identify the specific cause of failure and address it accordingly. AER Report: CI Core ran successfully ✅ |
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.
Overall looks good, left some small comments
} | ||
|
||
function test_RevertIf_CalldataLengthMismatch() public { | ||
vm.startPrank(transmitters[0]); | ||
vm.startPrank(s_transmitters[0]); | ||
vm.expectRevert(DualAggregator.CalldataLengthMismatch.selector); |
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.
Similar to what I said in the other comments, following the solidity guide:
There should be no code between
vm.expectEmit
/vm.expectRevert
and the function call.
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.
here you're correct, we should place expectRevert above the function call
|
Requires
Supports