We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78a9f77 commit ca369dfCopy full SHA for ca369df
cronet/src/test/java/io/grpc/cronet/CronetClientTransportTest.java
@@ -128,7 +128,8 @@ public void shutdownTransport() throws Exception {
128
BidirectionalStream.Callback callback2 = callbackCaptor.getValue();
129
// Shut down the transport. transportShutdown should be called immediately.
130
transport.shutdown();
131
- verify(clientTransportListener).transportShutdown(any(Status.class));
+ verify(clientTransportListener).transportShutdown(any(Status.class),
132
+ any(DisconnectError.class));
133
// Have two live streams. Transport has not been terminated.
134
verify(clientTransportListener, times(0)).transportTerminated();
135
0 commit comments