Skip to content

Commit 76ad39d

Browse files
committed
Fix array_union test
1 parent 4fa01ad commit 76ad39d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/tests/test_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -441,11 +441,11 @@ def py_flatten(arr):
441441
lambda: [np.intersect1d(arr, [3.0, 4.0]) for arr in data],
442442
],
443443
[
444-
f.array_union(col, [literal(12.0), literal(999.0)]),
444+
f.array_union(col, literal([12.0, 999.0])),
445445
lambda: [np.union1d(arr, [12.0, 999.0]) for arr in data],
446446
],
447447
[
448-
f.list_union(col, [literal(12.0), literal(999.0)]),
448+
f.list_union(col, literal([12.0, 999.0])),
449449
lambda: [np.union1d(arr, [12.0, 999.0]) for arr in data],
450450
],
451451
[

0 commit comments

Comments
 (0)