Skip to content

Commit

Permalink
fix: Make join test order-agnostic (#18975)
Browse files Browse the repository at this point in the history
  • Loading branch information
orlp authored Sep 27, 2024
1 parent 538fd6c commit 73a3344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/tests/unit/streaming/test_streaming_join.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def test_streaming_join_rechunk_12498() -> None:
b = pl.select(B=rows).lazy()

q = a.join(b, how="cross")
assert q.collect(streaming=True).to_dict(as_series=False) == {
assert q.collect(streaming=True).sort(["B", "A"]).to_dict(as_series=False) == {
"A": [0, 1, 0, 1],
"B": [0, 0, 1, 1],
}
Expand Down

0 comments on commit 73a3344

Please sign in to comment.