Skip to content

Commit

Permalink
Fixed formatting of a long line
Browse files Browse the repository at this point in the history
  • Loading branch information
normanj-bitquill committed Jun 7, 2024
1 parent 83be6e0 commit a40f008
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,8 @@ public void testRunExtendedExpressionsProjectionWithFilterInsteadOfProjectionExc
while (reader.loadNextBatch()) {
final ValueIterableVector<Boolean> booleanVector =
(ValueIterableVector<Boolean>) reader.getVectorSchemaRoot().getVector("filter_id_lower_than_20");
assertThat(booleanVector.getValueIterable(), IsIterableContainingInOrder.contains(true, true, true, false, false));
assertThat(booleanVector.getValueIterable(),
IsIterableContainingInOrder.contains(true, true, true, false, false));
rowcount += reader.getVectorSchemaRoot().getRowCount();
}
assertEquals(5, rowcount);
Expand Down

0 comments on commit a40f008

Please sign in to comment.