Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Aug 22, 2023
1 parent b850ce2 commit 2386dfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/namespaces/test_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ def test_list_set_operations_broadcast() -> None:
).to_dict(False) == {"a": [[2, 3, 1], [3, 1, 2], [1, 2, 3]]}
assert df.with_columns(
pl.col("a").list.set_difference(pl.lit(pl.Series([[1, 2]])))
).to_dict(False) == {"a": [[3], [3], [1]]}
).to_dict(False) == {"a": [[3], [3], [3]]}
assert df.with_columns(
pl.lit(pl.Series("a", [[1, 2]])).list.set_difference("a")
).to_dict(False) == {"a": [[1], [2], []]}
Expand Down

0 comments on commit 2386dfa

Please sign in to comment.