mjsax commented on a change in pull request #8738:
URL: https://github.com/apache/kafka/pull/8738#discussion_r432121655



##########
File path: 
streams/src/test/java/org/apache/kafka/streams/processor/internals/ClientUtilsTest.java
##########
@@ -45,42 +50,42 @@ public void 
fetchEndOffsetsShouldRethrowRuntimeExceptionAsStreamsException() {
         final Admin adminClient = EasyMock.createMock(AdminClient.class);
         
EasyMock.expect(adminClient.listOffsets(EasyMock.anyObject())).andThrow(new 
RuntimeException());
         replay(adminClient);
-        assertThrows(StreamsException.class, () ->  
fetchEndOffsetsWithoutTimeout(emptyList(), adminClient));
+        assertThrows(StreamsException.class, () ->  
fetchEndOffsets(emptyList(), adminClient, 60_000L));
         verify(adminClient);
     }
 
     @Test
-    public void 
fetchEndOffsetsShouldRethrowInterruptedExceptionAsStreamsException() throws 
InterruptedException, ExecutionException {
+    public void 
fetchEndOffsetsShouldRethrowInterruptedExceptionAsStreamsException() throws 
Exception {
         final Admin adminClient = EasyMock.createMock(AdminClient.class);
         final ListOffsetsResult result = 
EasyMock.createNiceMock(ListOffsetsResult.class);
         final KafkaFuture<Map<TopicPartition, ListOffsetsResultInfo>> 
allFuture = EasyMock.createMock(KafkaFuture.class);
 
         
EasyMock.expect(adminClient.listOffsets(EasyMock.anyObject())).andStubReturn(result);
         EasyMock.expect(result.all()).andStubReturn(allFuture);
-        EasyMock.expect(allFuture.get()).andThrow(new InterruptedException());
+        EasyMock.expect(allFuture.get(60000L, 
TimeUnit.MILLISECONDS)).andThrow(new InterruptedException());

Review comment:
       As above (also below)
   
   Also nit: `60_000L` (if just `60` and `TimeUnit.SECONDS`?)




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to