Skip to content

Commit 04faf89

Browse files
jbrockmendeljreback
authored andcommitted
TST: dont skip test_replace_series (#30443)
1 parent 2640d10 commit 04faf89

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/indexing/test_coercion.py

-4
Original file line numberDiff line numberDiff line change
@@ -986,10 +986,6 @@ class TestReplaceSeriesCoercion(CoercionBase):
986986
],
987987
)
988988
def test_replace_series(self, how, to_key, from_key):
989-
if from_key == "bool" and how == "series":
990-
# doesn't work in PY3, though ...dict_from_bool works fine
991-
pytest.skip("doesn't work as in PY3")
992-
993989
index = pd.Index([3, 4], name="xxx")
994990
obj = pd.Series(self.rep[from_key], index=index, name="yyy")
995991
assert obj.dtype == from_key

0 commit comments

Comments
 (0)