nastra commented on code in PR #9416: URL: https://github.com/apache/iceberg/pull/9416#discussion_r1452236196
########## core/src/test/java/org/apache/iceberg/DeleteFileIndexTestBase.java: ########## @@ -35,15 +36,17 @@ import org.apache.iceberg.relocated.com.google.common.collect.Lists; import org.apache.iceberg.relocated.com.google.common.collect.Sets; import org.apache.iceberg.util.CharSequenceSet; -import org.junit.Assert; -import org.junit.Test; +import org.junit.jupiter.api.TestTemplate; +import org.junit.jupiter.api.extension.ExtendWith; +@ExtendWith(ParameterizedTestExtension.class) public abstract class DeleteFileIndexTestBase< ScanT extends Scan<ScanT, T, G>, T extends ScanTask, G extends ScanTaskGroup<T>> - extends TableTestBase { + extends TestBase { - public DeleteFileIndexTestBase() { - super(2 /* table format version */); + @Parameters(name = "formatVersion = {0}") + public static List<Object> parameters() { + return Arrays.asList(new Object[] {2}); Review Comment: ```suggestion return Arrays.asList(2); ``` -- 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