Skip to content

Commit e4d4cfb

Browse files
committed
Make the options function
1 parent d2ace37 commit e4d4cfb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/csv/CSVSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ class CSVSuite extends QueryTest with SharedSQLContext with SQLTestUtils {
402402
}
403403
}
404404

405-
test("SPARK-13543 Write the output as uncompressed via option") {
405+
test("SPARK-13543 Write the output as uncompressed via option()") {
406406
val clonedConf = new Configuration(hadoopConfiguration)
407407
hadoopConfiguration.set("mapreduce.output.fileoutputformat.compress", "true")
408408
hadoopConfiguration

sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/json/JsonSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1525,7 +1525,7 @@ class JsonSuite extends QueryTest with SharedSQLContext with TestJsonData {
15251525
}
15261526
}
15271527

1528-
test("SPARK-13543 Write the output as uncompressed via option") {
1528+
test("SPARK-13543 Write the output as uncompressed via option()") {
15291529
val clonedConf = new Configuration(hadoopConfiguration)
15301530
hadoopConfiguration.set("mapreduce.output.fileoutputformat.compress", "true")
15311531
hadoopConfiguration

sql/core/src/test/scala/org/apache/spark/sql/execution/datasources/text/TextSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ class TextSuite extends QueryTest with SharedSQLContext {
8686
"Known codecs are"))
8787
}
8888

89-
test("SPARK-13543 Write the output as uncompressed via option") {
89+
test("SPARK-13543 Write the output as uncompressed via option()") {
9090
val clonedConf = new Configuration(hadoopConfiguration)
9191
hadoopConfiguration.set("mapreduce.output.fileoutputformat.compress", "true")
9292
hadoopConfiguration

0 commit comments

Comments
 (0)