diff --git a/pandas/tests/indexing/test_coercion.py b/pandas/tests/indexing/test_coercion.py index e3ad3f733a302..256aaef8eb5a7 100644 --- a/pandas/tests/indexing/test_coercion.py +++ b/pandas/tests/indexing/test_coercion.py @@ -986,10 +986,6 @@ class TestReplaceSeriesCoercion(CoercionBase): ], ) def test_replace_series(self, how, to_key, from_key): - if from_key == "bool" and how == "series": - # doesn't work in PY3, though ...dict_from_bool works fine - pytest.skip("doesn't work as in PY3") - index = pd.Index([3, 4], name="xxx") obj = pd.Series(self.rep[from_key], index=index, name="yyy") assert obj.dtype == from_key