Skip to content

Commit

Permalink
adding null row to test
Browse files Browse the repository at this point in the history
  • Loading branch information
brianrackle committed Nov 20, 2021
1 parent 4bb355d commit 00f66e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arrow/src/util/pretty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ mod tests {
builder.values().append_slice(&[1, 2, 3]).unwrap();
builder.append(true).unwrap();
builder.values().append_slice(&[4, 5, 6]).unwrap();
builder.append(true).unwrap();
builder.append(false).unwrap();
builder.values().append_slice(&[7, 8, 9]).unwrap();
builder.append(true).unwrap();

Expand All @@ -291,7 +291,7 @@ mod tests {
"| d1 |",
"+-----------+",
"| [1, 2, 3] |",
"| [4, 5, 6] |",
"| |",
"| [7, 8, 9] |",
"+-----------+",
];
Expand Down

0 comments on commit 00f66e0

Please sign in to comment.