rdblue commented on code in PR #15254:
URL: https://github.com/apache/iceberg/pull/15254#discussion_r2801757249
##########
data/src/test/java/org/apache/iceberg/data/DataTestHelpers.java:
##########
@@ -31,6 +31,14 @@
public class DataTestHelpers {
private DataTestHelpers() {}
+ public static void assertEquals(
+ Types.StructType struct, List<Record> expected, List<Record> actual) {
+ assertThat(actual).hasSize(expected.size());
+ for (int i = 0; i < expected.size(); i += 1) {
+ assertEquals(struct, expected.get(i), actual.get(i), null, -1);
Review Comment:
Why not call `assertEquals(StructType, Record, Record)` below? That seems
like the correct choice, even though it just makes this same call.
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]