Skip to content

Commit f83ea9a

Browse files
committed
Fix e2e test string match
Signed-off-by: joshvanl <[email protected]>
1 parent 4463b46 commit f83ea9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/e2e/service_invocation/service_invocation_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1558,7 +1558,7 @@ func TestNegativeCases(t *testing.T) {
15581558
// - `rpc error: code = Internal desc = failed to invoke, id: serviceinvocation-callee-0, err: rpc error: code = Internal desc = error invoking app channel: Post \"http://127.0.0.1:3000/timeouterror\": context deadline exceeded``
15591559
// - `rpc error: code = DeadlineExceeded desc = context deadline exceeded`
15601560
assert.Contains(t, testResults.RawError, "rpc error:")
1561-
assert.Contains(t, testResults.RawError, "context deadline exceeded")
1561+
assert.Contains(t, testResults.RawError, "RST_STREAM with error code: CANCEL")
15621562
assert.NotContains(t, testResults.RawError, "Client waited longer than it should have.")
15631563
})
15641564

0 commit comments

Comments
 (0)