JingGe commented on a change in pull request #19024:
URL: https://github.com/apache/flink/pull/19024#discussion_r822997646
##########
File path:
flink-formats/flink-parquet/src/test/java/org/apache/flink/formats/parquet/avro/AvroParquetRecordFormatTest.java
##########
@@ -309,9 +328,16 @@ private static GenericRecord createUser(String name, int
favoriteNumber, String
}
private void assertUserEquals(GenericRecord user, GenericRecord expected) {
- assertEquals(user.get("name").toString(), expected.get("name"));
+ assertEquals(user.get("name").toString(),
expected.get("name").toString());
Review comment:
Thanks for the hint! :) Not sure if I understand it correctly, migrated
to AssertJ and left a comment.
--
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]