Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
coastalwhite committed Jan 30, 2025
1 parent fd791d4 commit 374cfdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion py-polars/tests/unit/operations/test_merge_sorted.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ def test_merge_sorted_unbalanced(size: int, ra: list[int]) -> None:
assert df.height == size + len(ra)
assert df.get_column("a").is_sorted(nulls_last=nulls_last)

reference = lhs.get_column("a").append(rhs.get_column("a")).sort(nulls_last=nulls_last)
reference = (
lhs.get_column("a").append(rhs.get_column("a")).sort(nulls_last=nulls_last)
)
assert_series_equal(df.get_column("a"), reference)


Expand Down

0 comments on commit 374cfdf

Please sign in to comment.