kbendick commented on a change in pull request #3186:
URL: https://github.com/apache/iceberg/pull/3186#discussion_r731293338



##########
File path: 
spark/src/test/java/org/apache/iceberg/spark/source/TestPartitionValues.java
##########
@@ -418,17 +418,19 @@ public void testPartitionedByNestedString() throws 
Exception {
 
     // write into iceberg
     sourceDF.write()
-        .format("iceberg")
-        .mode(SaveMode.Append)
-        .save(baseLocation);
+            .format("iceberg")
+            .option(WRITE_FORMAT, format)
+            .mode(SaveMode.Append)
+            .save(baseLocation);
 
     // verify
     List<Row> actual = spark.read()
-        .format("iceberg")
-        .option(SparkReadOptions.VECTORIZATION_ENABLED, 
String.valueOf(vectorized))
-        .load(baseLocation)
-        .collectAsList();
+            .format("iceberg")
+            .option(SparkReadOptions.VECTORIZATION_ENABLED, 
String.valueOf(vectorized))
+            .load(baseLocation)
+            .collectAsList();

Review comment:
       Nit: Can you revert the formatting changes that are unrelated / 
unchanged lines of code?
   
   Added unnecessary line changes in the patch make it harder for people that 
support forks to continue to do so. Thank you 👍 




-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to