Skip to content

Commit 74d7320

Browse files
committed
filter not working?
1 parent e617261 commit 74d7320

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/test_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1037,7 +1037,7 @@ class TestToIterable(object):
10371037
lambda x: list(x.__iter__()),
10381038
], ids=['tolist', 'to_list', 'list', 'iter'])
10391039
@pytest.mark.parametrize('typ', [Series, Index])
1040-
@pytest.mark.filterwarnings("ignore:Passing integer:FutureWarning")
1040+
@pytest.mark.filterwarnings("ignore::FutureWarning")
10411041
def test_iterable(self, typ, method, dtype, rdtype):
10421042
# gh-10904
10431043
# gh-13258
@@ -1090,7 +1090,7 @@ def test_iterable_items(self, dtype, rdtype):
10901090
('object', (int, long)),
10911091
('category', (int, long))])
10921092
@pytest.mark.parametrize('typ', [Series, Index])
1093-
@pytest.mark.filterwarnings("ignore:Passing integer:FutureWarning")
1093+
@pytest.mark.filterwarnings("ignore::FutureWarning")
10941094
def test_iterable_map(self, typ, dtype, rdtype):
10951095
# gh-13236
10961096
# coerce iteration to underlying python / pandas types

0 commit comments

Comments
 (0)