@@ -5199,7 +5199,8 @@ public void halfClose() {
51995199 proxyCall.halfClose();
52005200
52015201 assertThat(dataPlaneHalfClosedLatch.await(5, java.util.concurrent.TimeUnit.SECONDS)).isTrue();
5202- // Since both end_of_stream and end_of_stream_without_message are true, the body must NOT be delivered
5202+ // Since both end_of_stream and end_of_stream_without_message are true,
5203+ // the body must NOT be delivered
52035204 assertThat(serverReceivedMessages).isEmpty();
52045205
52055206 proxyCall.cancel("Cleanup", null);
@@ -5366,7 +5367,7 @@ public void halfClose() {
53665367 @Test
53675368 @SuppressWarnings("unchecked")
53685369 public void
5369- clientInterceptor_extProcResponse_eosTrue_eosWithoutMessageFalse_emptyBody_deliveredAsMessage ()
5370+ clientInterceptor_extProcResponse_eosTrue_eosWithoutMsgFalse_emptyBody_deliveredAsMessage ()
53705371 throws Exception {
53715372 String uniqueExtProcServerName = InProcessServerBuilder.generateName();
53725373 String uniqueDataPlaneServerName = InProcessServerBuilder.generateName();
@@ -5501,7 +5502,8 @@ public void halfClose() {
55015502 proxyCall.halfClose();
55025503
55035504 assertThat(dataPlaneHalfClosedLatch.await(5, java.util.concurrent.TimeUnit.SECONDS)).isTrue();
5504- // Since end_of_stream is true and end_of_stream_without_message is false, empty body is delivered as a message
5505+ // Since end_of_stream is true and end_of_stream_without_message is false,
5506+ // empty body is delivered as a message
55055507 assertThat(serverReceivedMessages).containsExactly("");
55065508
55075509 proxyCall.cancel("Cleanup", null);
@@ -5647,7 +5649,8 @@ public void halfClose() {
56475649
56485650 assertThat(messageDeliveredLatch.await(5, java.util.concurrent.TimeUnit.SECONDS)).isTrue();
56495651 assertThat(serverReceivedMessages).containsExactly("normal-body");
5650- // Since end_of_stream was false, end_of_stream_without_message is ignored, so data plane must NOT be half-closed
5652+ // Since end_of_stream was false, end_of_stream_without_message is ignored,
5653+ // so data plane must NOT be half-closed
56515654 assertThat(dataPlaneHalfClosedLatch.getCount()).isEqualTo(1);
56525655
56535656 proxyCall.cancel("Cleanup", null);
0 commit comments