Skip to content

Commit

Permalink
adjust for kleene logic in drop_na (#3530)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed May 29, 2022
1 parent c1ba498 commit bdd96e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/test_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -1545,7 +1545,7 @@ def test_cumulative_eval() -> None:
def test_drop_nan_ignore_null_3525() -> None:
df = pl.DataFrame({"a": [1.0, float("NaN"), 2.0, None, 3.0, 4.0]})
assert df.select(pl.col("a").drop_nans()).to_series().to_list() == [
2.0,
1.0,
2.0,
None,
3.0,
Expand Down

0 comments on commit bdd96e0

Please sign in to comment.