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 2cbea55 commit cb15c0dCopy full SHA for cb15c0d
pandas/tests/series/indexing/test_getitem.py
@@ -142,9 +142,7 @@ def test_getitem_generator(string_series):
142
],
143
)
144
def test_getitem_ndim_deprecated(series):
145
- with tm.assert_produces_warning(
146
- FutureWarning, match="Support for multi-dimensional indexing"
147
- ):
+ with tm.assert_produces_warning(FutureWarning):
148
result = series[:, None]
149
150
expected = np.asarray(series)[:, None]
0 commit comments