nastra commented on code in PR #9185: URL: https://github.com/apache/iceberg/pull/9185#discussion_r1415418170
########## flink/v1.17/flink/src/test/java/org/apache/iceberg/flink/TestHelpers.java: ########## @@ -483,7 +473,7 @@ private static void assertArrayValues( private static void assertMapValues( Types.MapType mapType, LogicalType type, Map<?, ?> expected, MapData actual) { - Assert.assertEquals("map size should be equal", expected.size(), actual.size()); + assertThat(actual.size()).as("map size should be equal").isEqualTo(expected.size()); Review Comment: this should use `hasSameSizeAs(...)` -- 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...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org