Skip to content

Commit c4040ef

Browse files
Update pandas/tests/indexes/datetimes/test_date_range.py
Co-authored-by: Matthew Roeschke <[email protected]>
1 parent 42ee276 commit c4040ef

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/tests/indexes/datetimes/test_date_range.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1742,9 +1742,7 @@ def test_date_range_negative_freq_year_end_inbounds(self, unit):
17421742
tm.assert_index_equal(rng, exp)
17431743

17441744
def test_date_range_tzaware_endpoints_accept_ambiguous(self):
1745-
# With tz-aware endpoints and a calendar offset (MS),
1746-
# date_range should accept `ambiguous=True` and produce
1747-
# the same result as passing tz explicitly with naive endpoints.
1745+
# https://github.com/pandas-dev/pandas/issues/52908
17481746
start = Timestamp("1916-08-01", tz="Europe/Oslo")
17491747
end = Timestamp("1916-12-01", tz="Europe/Oslo")
17501748
res = date_range(start, end, freq="MS", ambiguous=True)

0 commit comments

Comments
 (0)