nastra commented on code in PR #9185: URL: https://github.com/apache/iceberg/pull/9185#discussion_r1432508266
########## flink/v1.17/flink/src/test/java/org/apache/iceberg/flink/source/TestFlinkScan.java: ########## @@ -200,20 +199,19 @@ private void validateIdentityPartitionProjections( for (int i = 0; i < projectedFields.size(); i++) { String name = projectedFields.get(i); - Assert.assertEquals( - "Projected field " + name + " should match", - inputRecord.getField(name), - actualRecord.getField(i)); + Assertions.assertThat(inputRecord.getField(name)) Review Comment: it's ok to use static imports for this -- 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