-
Notifications
You must be signed in to change notification settings - Fork 685
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: Implement v2 Acknowledgement rpc handler #7452
Changes from all commits
b7d3c74
6761671
0411d52
483606d
b1ce0c6
33d9e6a
999c04e
8c0ce79
9dc9b67
a8cd088
dbc39b0
0061588
c790490
ecf185e
ed6f2af
c71830e
d000390
d43100f
ca81397
f3caefc
8d59536
a44866c
7439d69
33ad4ac
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,6 +87,7 @@ func UnmarshalMsgResponses(cdc codec.Codec, data []byte, msgs ...codec.ProtoMars | |
// RequireErrorIsOrContains verifies that the passed error is either a target error or contains its error message. | ||
func RequireErrorIsOrContains(t *testing.T, err, targetError error, msgAndArgs ...interface{}) { | ||
t.Helper() | ||
require.Error(t, err) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. think this was removed in the recv PR, we don't need this since There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problem is that if This only happens when the test is broken and we are checking for an error that doesn't happen, so unlikely to be checked in on |
||
require.True( | ||
t, | ||
errors.Is(err, targetError) || | ||
|
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.
[nit] maybe add some spacing in between the different sections, send/recv/ack etc.