You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by tu...@apache.org on 2022/10/14 02:34:16 UTC

[arrow-rs] branch master updated: Update test_parse_arg_compression_format_fail (#2867)

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

tustvold pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git


The following commit(s) were added to refs/heads/master by this push:
     new 1b69dd7b0 Update test_parse_arg_compression_format_fail (#2867)
1b69dd7b0 is described below

commit 1b69dd7b0d59616f0ad32259fd3e3f27361fa278
Author: Raphael Taylor-Davies <17...@users.noreply.github.com>
AuthorDate: Fri Oct 14 15:34:10 2022 +1300

    Update test_parse_arg_compression_format_fail (#2867)
---
 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 90e0a6862..8c62241e3 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 <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 <PARQUET_COMPRESSION>': Unknown compression ZIP : possible values UNCOMPRESSED, SNAPPY, GZIP, LZO, BROTLI, LZ4, ZSTD \n\nFor more information try --help\n"),
         }
     }