Skip to content

Commit b71e71c

Browse files
authored
apacheGH-42224: [Java] Fix Typo in TestAceroSubstraitConsumer Test Method (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]>
1 parent 5e52077 commit b71e71c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/dataset/src/test/java/org/apache/arrow/dataset/substrait/TestAceroSubstraitConsumer.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ public void testRunExtendedExpressionsProjectAndFilter() throws Exception {
632632
assertThat(sumVector.getValueIterable(), IsIterableContainingInOrder.contains(21, 3, 13));
633633
final ValueIterableVector<Text> nameVector =
634634
(ValueIterableVector<Text>)
635-
reader.getVectorSchemaRoot().getVector("conccat_column_a_and_b");
635+
reader.getVectorSchemaRoot().getVector("concat_column_a_and_b");
636636
assertThat(
637637
nameVector.getValueIterable(),
638638
IsIterableContainingInOrder.contains(

0 commit comments

Comments
 (0)