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


##########
flink-java/src/test/java/org/apache/flink/api/java/io/RowCsvInputFormatTest.java:
##########
@@ -225,22 +213,20 @@ public void ignoreMultiCharPrefixComments() throws 
Exception {
         Row result = new Row(3);
 
         result = format.nextRecord(result);
-        assertNotNull(result);
-        assertEquals("this is", result.getField(0));
-        assertEquals(1, result.getField(1));
-        assertEquals(2.0, result.getField(2));
+        assertThat(result.getField(0)).isEqualTo("this is");
+        assertThat(result.getField(1)).isEqualTo(1);

Review Comment:
   Not applicable caused by type inference & overload methods selection.



-- 
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: issues-unsubscr...@flink.apache.org

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

Reply via email to