Skip to content

Commit 2ab2d29

Browse files
authored
Update test
Fix tesr error
1 parent 10e5462 commit 2ab2d29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql/hive/src/test/scala/org/apache/spark/sql/hive/CompressionCodecSuite.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import org.apache.spark.sql.test.SQLTestUtils
2626

2727
class CompressionCodecSuite extends TestHiveSingleton with SQLTestUtils {
2828
test("Test `spark.sql.parquet.compression.codec` config") {
29-
Seq("NONE", "UNCOMPRESSED", "SNAPPY", "ZLIB", "LZO").foreach { c =>
29+
Seq("NONE", "UNCOMPRESSED", "SNAPPY", "GZIP", "LZO").foreach { c =>
3030
withSQLConf(SQLConf.PARQUET_COMPRESSION.key -> c) {
3131
val expected = if (c == "NONE") "UNCOMPRESSED" else c
3232
val option = new ParquetOptions(Map.empty[String, String], spark.sessionState.conf)

0 commit comments

Comments
 (0)