viirya commented on code in PR #1844:
URL: https://github.com/apache/arrow-rs/pull/1844#discussion_r894975699


##########
parquet/src/bin/parquet-fromcsv.rs:
##########
@@ -403,7 +403,9 @@ mod tests {
         let mut buffer_vec = Vec::new();
         let mut buffer = std::io::Cursor::new(&mut buffer_vec);
         cmd.write_long_help(&mut buffer).unwrap();
-        let actual = String::from_utf8(buffer_vec).unwrap();
+        let mut actual = String::from_utf8(buffer_vec).unwrap();

Review Comment:
   ```suggestion
           // Remove Parquet version string from the help text
           let mut actual = String::from_utf8(buffer_vec).unwrap();
   ```



-- 
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]

Reply via email to