Skip to content

Commit

Permalink
remove replace
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Feb 18, 2025
1 parent 3823f13 commit 183caf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions py-polars/tests/unit/io/test_skip_batch_predicate.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ def test_true_false_predicate() -> None:
df = pl.DataFrame({"len": [1]})

out = df.select(
true=true_sbp.replace(None, False),
false=false_sbp.replace(None, False),
null=null_sbp.replace(None, False),
true=true_sbp,
false=false_sbp,
null=null_sbp,
)

assert_frame_equal(
Expand Down

0 comments on commit 183caf6

Please sign in to comment.