Skip to content

Commit

Permalink
PR feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
loicdiridollou committed Sep 15, 2024
1 parent 04e4454 commit eba1010
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_timefuncs.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,8 @@ def test_some_offsets() -> None:
def test_timestampseries_offset() -> None:
"""Test that adding an offset to a timestamp series works."""
vv = pd.bdate_range("2024-09-01", "2024-09-10")
vv + pd.tseries.offsets.YearEnd(0)
shifted_vv = vv + pd.tseries.offsets.YearEnd(0)
check(assert_type(shifted_vv, pd.DatetimeIndex), pd.DatetimeIndex)


def test_types_to_numpy() -> None:
Expand Down

0 comments on commit eba1010

Please sign in to comment.