We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fee4f86 commit 2c2ddc6Copy full SHA for 2c2ddc6
pandas/tests/base/test_fillna.py
@@ -11,7 +11,7 @@
11
from pandas.core.dtypes.common import needs_i8_conversion
12
from pandas.core.dtypes.generic import ABCMultiIndex
13
14
-from pandas import Index, Series
+from pandas import Index
15
import pandas._testing as tm
16
from pandas.tests.base.common import allow_na_ops
17
@@ -31,9 +31,6 @@ def test_fillna(index_or_series_obj):
31
tm.assert_series_equal(obj, result)
32
33
# check shallow_copied
34
- if isinstance(obj, Series) and len(obj) == 0:
35
- # TODO: GH-32543
36
- pytest.xfail("Shallow copy for empty Series is bugged")
37
assert obj is not result
38
39
0 commit comments