Skip to content

Commit 8a122a6

Browse files
committed
format
1 parent 0b26bb7 commit 8a122a6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

vector/src/test/java/org/apache/arrow/vector/util/TestVectorAppender.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1082,8 +1082,10 @@ public void testAppendRunEndEncodedVector() {
10821082
try (RunEndEncodedVector expectedDelta =
10831083
new RunEndEncodedVector(expectedDeltaField, allocator, null)) {
10841084
expectedDelta.allocateNew();
1085-
ValueVectorDataPopulator.setVector((IntVector) expectedDelta.getValuesVector(), 3, 4, 5, null);
1086-
ValueVectorDataPopulator.setVector((IntVector) expectedDelta.getRunEndsVector(), 1, 3, 4, 6);
1085+
ValueVectorDataPopulator.setVector(
1086+
(IntVector) expectedDelta.getValuesVector(), 3, 4, 5, null);
1087+
ValueVectorDataPopulator.setVector(
1088+
(IntVector) expectedDelta.getRunEndsVector(), 1, 3, 4, 6);
10871089
expectedDelta.setValueCount(6);
10881090
assertVectorsEqual(expectedDelta, delta);
10891091
}

0 commit comments

Comments
 (0)