nastra commented on code in PR #9416: URL: https://github.com/apache/iceberg/pull/9416#discussion_r1447607114
########## core/src/test/java/org/apache/iceberg/TestLocalFilterFiles.java: ########## @@ -18,20 +18,17 @@ */ package org.apache.iceberg; -import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; +import java.util.Arrays; +import java.util.List; +import org.junit.jupiter.api.extension.ExtendWith; -@RunWith(Parameterized.class) +@ExtendWith(ParameterizedTestExtension.class) public class TestLocalFilterFiles extends FilterFilesTestBase<TableScan, FileScanTask, CombinedScanTask> { - @Parameterized.Parameters(name = "formatVersion = {0}") - public static Object[] parameters() { - return new Object[] {1, 2}; - } - - public TestLocalFilterFiles(int formatVersion) { - super(formatVersion); + @Parameters(name = "formatVersion = {0}") + public static List<Object> parameters() { Review Comment: ```suggestion public static List<Object[]> parameters() { ``` -- 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