We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 366c341 commit ecfafe0Copy full SHA for ecfafe0
pandas/tests/plotting/test_series.py
@@ -1007,15 +1007,14 @@ def test_bar_line_plot(self):
1007
def test_tseries_plot_dst_transition(self):
1008
"""
1009
Test that plotting tz-aware timeseries works during DST fall-back transition.
1010
- #62936
1011
1012
- tind = pd.date_range(
+ # GH62936
+ tind = date_range(
1013
"2025-10-26T00:00:00Z",
1014
"2025-10-26T03:00:00Z",
1015
freq="5min",
1016
tz="utc",
1017
).tz_convert("MET")[12:]
1018
-
+
1019
myts = DataFrame({"a": 1}, index=tind)
1020
_check_plot_works(myts.plot)
1021
0 commit comments