rdblue commented on code in PR #5234: URL: https://github.com/apache/iceberg/pull/5234#discussion_r1080673261
########## core/src/test/java/org/apache/iceberg/TableTestBase.java: ########## @@ -458,13 +458,25 @@ void validateTableFiles(Table tbl, DataFile... expectedFiles) { Assert.assertEquals("Files should match", expectedFilePaths, actualFilePaths); } - void validateTableDeleteFiles(Table tbl, DeleteFile... expectedFiles) { + void validateBranchFiles(Table tbl, String ref, DataFile... expectedFiles) { + Set<CharSequence> expectedFilePaths = Sets.newHashSet(); + for (DataFile file : expectedFiles) { + expectedFilePaths.add(file.path()); + } + Set<CharSequence> actualFilePaths = Sets.newHashSet(); Review Comment: Nit: block spacing. -- 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