Skip to content

Commit d3c8202

Browse files
authored
ARROW-1945: [C++] Fix a small typo
1 parent 0b07895 commit d3c8202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp/src/arrow/array-test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,7 @@ TEST_F(TestBinaryBuilder, TestScalarAppend) {
11581158
TEST_F(TestBinaryBuilder, TestCapacityReserve) {
11591159
vector<string> strings = {"a", "bb", "cc", "ddddd", "eeeee"};
11601160
int64_t N = static_cast<int>(strings.size());
1161-
int64_t length = 0
1161+
int64_t length = 0;
11621162
int64_t data_length = 0;
11631163
int64_t capacity = N;
11641164

0 commit comments

Comments
 (0)