You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/06/11 04:07:28 UTC

[GitHub] [arrow-rs] tustvold commented on a diff in pull request #1844: MINOR: Remove version check from `test_command_help`

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


##########
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:
   Maybe a comment explaining what this is doing?



-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org