From fe50463f2d21e2e468bc972558addaa52c81fc08 Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Fri, 14 Oct 2022 11:22:56 +1300 Subject: [PATCH] Update test_parse_arg_compression_format_fail --- parquet/src/bin/parquet-fromcsv.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parquet/src/bin/parquet-fromcsv.rs b/parquet/src/bin/parquet-fromcsv.rs index 90e0a68625f..8c62241e34f 100644 --- a/parquet/src/bin/parquet-fromcsv.rs +++ b/parquet/src/bin/parquet-fromcsv.rs @@ -516,7 +516,7 @@ mod tests { Ok(_) => panic!("unexpected success"), Err(e) => assert_eq!( format!("{}", e), - "error: Invalid value \"zip\" for '--parquet-compression ': Unknown compression ZIP : possible values UNCOMPRESSED, SNAPPY, GZIP, LZO, BROTLI, LZ4, ZSTD \n\nFor more information try --help\n"), + "error: Invalid value 'zip' for '--parquet-compression ': Unknown compression ZIP : possible values UNCOMPRESSED, SNAPPY, GZIP, LZO, BROTLI, LZ4, ZSTD \n\nFor more information try --help\n"), } }