Skip to content

Commit

Permalink
c
Browse files Browse the repository at this point in the history
  • Loading branch information
nameexhaustion committed Feb 18, 2025
1 parent 8104b42 commit 3cec05d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/operations/test_inequality_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def test_join_where_literal_20061() -> None:
df_right,
pl.col("value_left") > pl.col("value_right"),
pl.col("flag_right") == pl.lit(1, dtype=pl.Int8),
).sort("id").to_dict(as_series=False) == {
).sort(pl.all()).to_dict(as_series=False) == {
"id": [1, 2, 3, 3],
"value_left": [10, 20, 30, 30],
"flag": [1, 0, 1, 1],
Expand Down

0 comments on commit 3cec05d

Please sign in to comment.