This is an automated email from the ASF dual-hosted git repository.

amoghj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new d8ded68768 Spark3.4: Fix the minor code style issue (#8513)
d8ded68768 is described below

commit d8ded687681f4c194198026c347b79e77d166c09
Author: roryqi <[email protected]>
AuthorDate: Thu Sep 7 12:02:00 2023 +0800

    Spark3.4: Fix the minor code style issue (#8513)
---
 .../src/test/java/org/apache/iceberg/spark/TestSparkWriteConf.java     | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/spark/v3.4/spark/src/test/java/org/apache/iceberg/spark/TestSparkWriteConf.java
 
b/spark/v3.4/spark/src/test/java/org/apache/iceberg/spark/TestSparkWriteConf.java
index a7c22b4468..b7af797d14 100644
--- 
a/spark/v3.4/spark/src/test/java/org/apache/iceberg/spark/TestSparkWriteConf.java
+++ 
b/spark/v3.4/spark/src/test/java/org/apache/iceberg/spark/TestSparkWriteConf.java
@@ -418,8 +418,7 @@ public class TestSparkWriteConf extends 
SparkTestBaseWithCatalog {
 
           updateProperties.commit();
 
-          Map<String, String> writeOptions = ImmutableMap.of();
-          SparkWriteConf writeConf = new SparkWriteConf(spark, table, 
writeOptions);
+          SparkWriteConf writeConf = new SparkWriteConf(spark, table, 
ImmutableMap.of());
           Map<String, String> writeProperties = writeConf.writeProperties();
           Map<String, String> expectedProperties = propertiesSuite.get(2);
           Assert.assertEquals(expectedProperties.size(), 
writeConf.writeProperties().size());

Reply via email to