nastra commented on code in PR #9380: URL: https://github.com/apache/iceberg/pull/9380#discussion_r1445291604
########## spark/v3.5/spark/src/test/java/org/apache/iceberg/spark/source/TestCompressionSettings.java: ########## @@ -69,66 +75,90 @@ import org.apache.spark.sql.Dataset; import org.apache.spark.sql.Row; import org.apache.spark.sql.SparkSession; -import org.assertj.core.api.Assertions; -import org.junit.AfterClass; -import org.junit.BeforeClass; -import org.junit.Rule; -import org.junit.Test; -import org.junit.rules.TemporaryFolder; -import org.junit.runner.RunWith; -import org.junit.runners.Parameterized; - -@RunWith(Parameterized.class) -public class TestCompressionSettings extends SparkCatalogTestBase { +import org.junit.jupiter.api.AfterAll; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeAll; +import org.junit.jupiter.api.TestTemplate; +import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.api.io.TempDir; + +@ExtendWith(ParameterizedTestExtension.class) +public class TestCompressionSettings extends CatalogTestBase { private static final Configuration CONF = new Configuration(); private static final String tableName = "testWriteData"; private static SparkSession spark = null; - private final FileFormat format; - private final ImmutableMap<String, String> properties; + @Parameter(index = 3) + private FileFormat format; + + @Parameter(index = 4) + private ImmutableMap<String, String> properties; Review Comment: ```suggestion private Map<String, String> properties; ``` -- 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