Skip to content

Commit 864da12

Browse files
TST: Fix failing tests for minimum version by ignoring obsolete deprecation warning
1 parent 5d23a26 commit 864da12

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

pandas/tests/reshape/test_pivot.py

+3
Original file line numberDiff line numberDiff line change
@@ -2853,6 +2853,9 @@ def test_pivot_margins_with_none_index(self):
28532853
)
28542854
tm.assert_frame_equal(result, expected)
28552855

2856+
# Ignore deprecation raised by old versions of pyarrow. Already fixed in
2857+
# newer versions
2858+
@pytest.mark.filterwarnings("ignore:Passing a BlockManager:DeprecationWarning")
28562859
def test_pivot_with_pyarrow_categorical(self):
28572860
# GH#53051
28582861

pandas/tests/test_multilevel.py

+3
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,9 @@ def test_multiindex_dt_with_nan(self):
319319
expected = Series(["a", "b", "c", "d"], name=("sub", np.nan))
320320
tm.assert_series_equal(result, expected)
321321

322+
# Ignore deprecation raised by old versions of pyarrow. Already fixed in
323+
# newer versions
324+
@pytest.mark.filterwarnings("ignore:Passing a BlockManager:DeprecationWarning")
322325
def test_multiindex_with_pyarrow_categorical(self):
323326
# GH#53051
324327

0 commit comments

Comments
 (0)