Skip to content

Commit 4de54eb

Browse files
committed
Fix array_except test
1 parent 76ad39d commit 4de54eb

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
@@ -449,11 +449,11 @@ def py_flatten(arr):
449449
lambda: [np.union1d(arr, [12.0, 999.0]) for arr in data],
450450
],
451451
[
452-
f.array_except(col, [literal(3.0)]),
452+
f.array_except(col, literal([3.0])),
453453
lambda: [np.setdiff1d(arr, [3.0]) for arr in data],
454454
],
455455
[
456-
f.list_except(col, [literal(3.0)]),
456+
f.list_except(col, literal([3.0])),
457457
lambda: [np.setdiff1d(arr, [3.0]) for arr in data],
458458
],
459459
[

0 commit comments

Comments
 (0)