Skip to content

Commit 71412ff

Browse files
torexttorext
torext
authored andcommitted
Add issue number and removal TODO
1 parent 3c599bc commit 71412ff

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

Diff for: pandas/tests/plotting/frame/test_frame.py

+2
Original file line numberDiff line numberDiff line change
@@ -2489,6 +2489,8 @@ def test_secondary_y(self, secondary_y):
24892489

24902490
@pytest.mark.slow
24912491
def test_plot_no_warning(self):
2492+
# GH 55138
2493+
# TODO(3.0): this can be removed once Period[B] deprecation is enforced
24922494
df = tm.makeTimeDataFrame()
24932495
with tm.assert_produces_warning(False):
24942496
_ = df.plot()

Diff for: pandas/tests/plotting/test_series.py

+2
Original file line numberDiff line numberDiff line change
@@ -976,5 +976,7 @@ def test_series_none_color(self):
976976

977977
@pytest.mark.slow
978978
def test_plot_no_warning(self, ts):
979+
# GH 55138
980+
# TODO(3.0): this can be removed once Period[B] deprecation is enforced
979981
with tm.assert_produces_warning(False):
980982
_ = ts.plot()

0 commit comments

Comments
 (0)