@@ -2395,7 +2395,7 @@ public void onCompleted() {
23952395
23962396 @ Test
23972397 @ SuppressWarnings ("unchecked" )
2398- public void givenDeferredHalfClose_whenExtProcRespondsWithEndOfStreamWithoutMessage_thenSuperHalfCloseCalled ()
2398+ public void deferredHalfClose_whenExtProcRespondsWithEosWithoutMessage_thenSuperHalfCloseCalled ()
23992399 throws Exception {
24002400 String uniqueExtProcServerName = InProcessServerBuilder .generateName ();
24012401 String uniqueDataPlaneServerName = InProcessServerBuilder .generateName ();
@@ -2717,7 +2717,7 @@ public void halfClose() {
27172717
27182718 @ Test
27192719 @ SuppressWarnings ("unchecked" )
2720- public void givenExtProcRespondsWithEndOfStreamWithoutMessage_whenAppHasNotHalfClosed_thenSuperHalfCloseCalled ()
2720+ public void extProcRespondsWithEosWithoutMessage_whenAppNotHalfClosed_thenSuperHalfCloseCalled ()
27212721 throws Exception {
27222722 String uniqueExtProcServerName = InProcessServerBuilder .generateName ();
27232723 String uniqueDataPlaneServerName = InProcessServerBuilder .generateName ();
@@ -3640,7 +3640,8 @@ public void givenObservabilityTrue_whenExtProcBusy_thenIsReadyReturnsFalse()
36403640 assertThat (configOrError .errorDetail ).isNull ();
36413641 ExternalProcessorFilterConfig filterConfig = configOrError .config ;
36423642
3643- final List <ProcessingRequest > extProcRequests = new java .util .concurrent .CopyOnWriteArrayList <>();
3643+ final List <ProcessingRequest > extProcRequests =
3644+ new java .util .concurrent .CopyOnWriteArrayList <>();
36443645 // External Processor Server
36453646 ExternalProcessorGrpc .ExternalProcessorImplBase extProcImpl ;
36463647 extProcImpl = new ExternalProcessorGrpc .ExternalProcessorImplBase () {
@@ -6168,7 +6169,8 @@ public void givenObservabilityModeFalse_whenExtProcBusy_thenIsReadyReturnsFalse(
61686169 assertThat (configOrError .errorDetail ).isNull ();
61696170 ExternalProcessorFilterConfig filterConfig = configOrError .config ;
61706171
6171- final List <ProcessingRequest > extProcRequests = new java .util .concurrent .CopyOnWriteArrayList <>();
6172+ final List <ProcessingRequest > extProcRequests =
6173+ new java .util .concurrent .CopyOnWriteArrayList <>();
61726174 // Sidecar server
61736175 final CountDownLatch sidecarActionLatch = new CountDownLatch (1 );
61746176 ExternalProcessorGrpc .ExternalProcessorImplBase extProcImpl ;
0 commit comments