We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f9c668 commit f1dbfa5Copy full SHA for f1dbfa5
1 file changed
binder/src/androidTest/java/io/grpc/binder/internal/BinderClientTransportTest.java
@@ -420,7 +420,7 @@ public void testAsyncSecurityPolicyCancelledUponExternalTermination() throws Exc
420
transport = new BinderClientTransportBuilder().setSecurityPolicy(securityPolicy).build();
421
transport.start(transportListener).run();
422
AuthRequest authRequest = securityPolicy.takeNextAuthRequest(TIMEOUT_SECONDS, SECONDS);
423
- transport.shutdownNow(Status.UNAVAILABLE);
+ transport.shutdownNow(Status.UNAVAILABLE); // 'authRequest' remains unanswered!
424
transportListener.awaitShutdown();
425
transportListener.awaitTermination();
426
assertThat(authRequest.isCancelled()).isTrue();
0 commit comments