nastra commented on code in PR #9381: URL: https://github.com/apache/iceberg/pull/9381#discussion_r1447617468
########## flink/v1.18/flink/src/test/java/org/apache/iceberg/flink/source/TestStreamScanSql.java: ########## @@ -33,30 +36,27 @@ import org.apache.iceberg.FileFormat; import org.apache.iceberg.Table; import org.apache.iceberg.TestHelpers; -import org.apache.iceberg.catalog.Namespace; import org.apache.iceberg.catalog.TableIdentifier; import org.apache.iceberg.data.GenericAppenderHelper; import org.apache.iceberg.data.GenericRecord; import org.apache.iceberg.data.Record; -import org.apache.iceberg.flink.FlinkCatalogTestBase; +import org.apache.iceberg.flink.CatalogTestBase; import org.apache.iceberg.flink.MiniClusterResource; import org.apache.iceberg.relocated.com.google.common.collect.ImmutableList; import org.apache.iceberg.relocated.com.google.common.collect.Lists; import org.assertj.core.api.Assertions; -import org.junit.After; -import org.junit.Assert; -import org.junit.Before; -import org.junit.Test; +import org.junit.jupiter.api.AfterEach; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.TestTemplate; +import org.junit.jupiter.api.io.TempDir; -public class TestStreamScanSql extends FlinkCatalogTestBase { +public class TestStreamScanSql extends CatalogTestBase { private static final String TABLE = "test_table"; private static final FileFormat FORMAT = FileFormat.PARQUET; private TableEnvironment tEnv; - public TestStreamScanSql(String catalogName, Namespace baseNamespace) { - super(catalogName, baseNamespace); - } + private @TempDir Path temp; Review Comment: no need to define this, you should be able to use `temporaryDirectory` from the super class. However, I noticed that you might need to change the visibility of `Testbase.temporaryDirectory` to protected -- 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