Skip to content

Commit

Permalink
remove defunct test bits
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrockmendel committed Nov 18, 2023
1 parent e1e5e52 commit 51ce4a3
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions pandas/tests/tseries/offsets/test_month.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
DatetimeIndex,
Series,
_testing as tm,
date_range,
)
from pandas.tests.tseries.offsets.common import (
assert_is_on_offset,
Expand Down Expand Up @@ -74,11 +73,6 @@ def test_offset_whole_year(self):
exp = DatetimeIndex(dates[1:])
tm.assert_index_equal(result, exp)

# ensure generating a range with DatetimeIndex gives same result
result = date_range(start=dates[0], end=dates[-1], freq="SM")
exp = DatetimeIndex(dates, freq="SM")
tm.assert_index_equal(result, exp)

offset_cases = []
offset_cases.append(
(
Expand Down Expand Up @@ -330,11 +324,6 @@ def test_offset_whole_year(self):
exp = DatetimeIndex(dates[1:])
tm.assert_index_equal(result, exp)

# ensure generating a range with DatetimeIndex gives same result
result = date_range(start=dates[0], end=dates[-1], freq="SMS")
exp = DatetimeIndex(dates, freq="SMS")
tm.assert_index_equal(result, exp)

offset_cases = [
(
SemiMonthBegin(),
Expand Down

0 comments on commit 51ce4a3

Please sign in to comment.