Skip to content

Commit

Permalink
ARROW-1945: [C++] Fix a small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xuepanchen committed Jan 18, 2018
1 parent 0b07895 commit d3c8202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/arrow/array-test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1158,7 +1158,7 @@ TEST_F(TestBinaryBuilder, TestScalarAppend) {
TEST_F(TestBinaryBuilder, TestCapacityReserve) {
vector<string> strings = {"a", "bb", "cc", "ddddd", "eeeee"};
int64_t N = static_cast<int>(strings.size());
int64_t length = 0
int64_t length = 0;
int64_t data_length = 0;
int64_t capacity = N;

Expand Down

0 comments on commit d3c8202

Please sign in to comment.