RocMarshal commented on code in PR #20990:
URL: https://github.com/apache/flink/pull/20990#discussion_r1296008112


##########
flink-connectors/flink-hadoop-compatibility/src/test/java/org/apache/flink/api/java/hadoop/mapreduce/HadoopInputFormatTest.java:
##########
@@ -137,27 +132,26 @@ public void testFetchNextRecordReaderHasNewValue() throws 
Exception {
                 setupHadoopInputFormat(new DummyInputFormat(), 
Job.getInstance(), recordReader);
         hadoopInputFormat.fetchNext();
 
-        assertThat(hadoopInputFormat.fetched, is(true));
-        assertThat(hadoopInputFormat.hasNext, is(true));
+        assertThat(hadoopInputFormat.fetched).isTrue();
+        assertThat(hadoopInputFormat.hasNext).isTrue();
     }
 
     @Test
-    public void testFetchNextRecordReaderThrowsException() throws Exception {
+    void testFetchNextRecordReaderThrowsException() throws Exception {
 
         DummyRecordReader recordReader = mock(DummyRecordReader.class);
         when(recordReader.nextKeyValue()).thenThrow(new 
InterruptedException());
 
         HadoopInputFormat<String, Long> hadoopInputFormat =
                 setupHadoopInputFormat(new DummyInputFormat(), 
Job.getInstance(), recordReader);
 
-        exception.expect(IOException.class);
-        hadoopInputFormat.fetchNext();
+        
assertThatThrownBy(hadoopInputFormat::fetchNext).isInstanceOf(IOException.class);
 
-        assertThat(hadoopInputFormat.hasNext, is(true));
+        assertThat(hadoopInputFormat.hasNext).isFalse();

Review Comment:
   Hi, @1996fanrui nice catch. 
   sorry for no  explaining this change before the  review.
   
   When debugging the line, I found the real result from `true` to `false` due 
to the pr change. So the change happend.



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to