Skip to content

Commit

Permalink
apacheGH-42224: [Java] Fix Typo in TestAceroSubstraitConsumer Test Me…
Browse files Browse the repository at this point in the history
…thod (apache#42225)

### Rationale for this change

Fixes a typo causing a `NullPointerException` in the test method

### What changes are included in this PR?

- Updating typo to fix Unit Test

### Are these changes tested?

Yes

### Are there any user-facing changes?

No.

* GitHub Issue: apache#42224

Authored-by: Hyunseok Seo <[email protected]>
Signed-off-by: David Li <[email protected]>
  • Loading branch information
llama90 authored Jun 21, 2024
1 parent 5e52077 commit b71e71c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ public void testRunExtendedExpressionsProjectAndFilter() throws Exception {
assertThat(sumVector.getValueIterable(), IsIterableContainingInOrder.contains(21, 3, 13));
final ValueIterableVector<Text> nameVector =
(ValueIterableVector<Text>)
reader.getVectorSchemaRoot().getVector("conccat_column_a_and_b");
reader.getVectorSchemaRoot().getVector("concat_column_a_and_b");
assertThat(
nameVector.getValueIterable(),
IsIterableContainingInOrder.contains(
Expand Down

0 comments on commit b71e71c

Please sign in to comment.