Skip to content

Commit

Permalink
Update tests/utils_test.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoGorelli authored Sep 30, 2024
1 parent 3b2f053 commit 5c8f90e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ def test_maybe_reset_index_polars() -> None:
result = nw.maybe_reset_index(df)
assert result is df
series = nw.from_native(pl.Series([1, 2, 3]), series_only=True)
result = nw.maybe_reset_index(series)
assert result is series
result_s = nw.maybe_reset_index(series)
assert result_s is series


@pytest.mark.skipif(
Expand Down

0 comments on commit 5c8f90e

Please sign in to comment.