Skip to content

Commit

Permalink
Remove version
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Jun 10, 2022
1 parent c396dfb commit 499b110
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion parquet/src/bin/parquet-fromcsv-help.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
parquet 15.0.0
Apache Arrow <[email protected]>
Binary to convert csv to Parquet

Expand Down
3 changes: 2 additions & 1 deletion parquet/src/bin/parquet-fromcsv.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ 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();
actual.substring(actual.indexOf('\n') + 1);
assert_eq!(
expected, actual,
"help text not match. please update to \n---\n{}\n---\n",
Expand Down

0 comments on commit 499b110

Please sign in to comment.