Skip to content

Commit 076dbd2

Browse files
committed
flatten is returning [] not None in CI
1 parent 34fc5f2 commit 076dbd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/tests/test_expr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ def test_alias_with_metadata(df):
683683
pytest.param(
684684
col("f").flatten(),
685685
pa.array(
686-
[[-1, 1, 0, 4, 4], [5, 10, 15, 20, 3], [], None],
686+
[[-1, 1, 0, 4, 4], [5, 10, 15, 20, 3], [], []],
687687
type=pa.list_(pa.int64()),
688688
),
689689
id="flatten",

0 commit comments

Comments
 (0)