nastra commented on code in PR #9849: URL: https://github.com/apache/iceberg/pull/9849#discussion_r1511191340
########## core/src/test/java/org/apache/iceberg/TestBase.java: ########## @@ -745,6 +745,12 @@ void assertEquals(String context, Object expected, Object actual) { assertThat(actual).as(context).isEqualTo(expected); } } + + void assertHasSize(String context, int expected, List<?> actualList) { Review Comment: ```suggestion void assertHasSize(String context, List<?> list, int expectedSize) { ``` -- 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