Skip to content

Commit 6a374fb

Browse files
committed
Update unit test return type
1 parent 24b1947 commit 6a374fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tests/test_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -732,7 +732,7 @@ def test_array_function_obj_tests(stmt, py_expr):
732732
),
733733
(
734734
f.regexp_match(column("a"), literal("(ell|orl)")),
735-
pa.array([["ell"], ["orl"], None]),
735+
pa.array([["ell"], ["orl"], None], type=pa.list_(pa.string_view())),
736736
),
737737
(
738738
f.regexp_replace(column("a"), literal("(ell|orl)"), literal("-")),

0 commit comments

Comments
 (0)