Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Dec 9, 2024
1 parent a743a24 commit 989c255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/operations/test_slice.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,5 +308,5 @@ def test_slice_pushdown_panic_20216() -> None:
q = q.with_columns(col.str.split("/"))
q = q.with_columns(pl.when(col.is_not_null()).then(col.list.get(0)).otherwise(None))

assert_frame_equal(q.collect(), pl.DataFrame({"A": ["1"]}))
assert_frame_equal(q.slice(0, 1).collect(), pl.DataFrame({"A": ["1"]}))
assert_frame_equal(q.collect(), pl.DataFrame({"A": ["1"]}))

0 comments on commit 989c255

Please sign in to comment.