Skip to content

Commit 2c2ddc6

Browse files
resolving merge conflict
1 parent fee4f86 commit 2c2ddc6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/tests/base/test_fillna.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from pandas.core.dtypes.common import needs_i8_conversion
1212
from pandas.core.dtypes.generic import ABCMultiIndex
1313

14-
from pandas import Index, Series
14+
from pandas import Index
1515
import pandas._testing as tm
1616
from pandas.tests.base.common import allow_na_ops
1717

@@ -31,9 +31,6 @@ def test_fillna(index_or_series_obj):
3131
tm.assert_series_equal(obj, result)
3232

3333
# 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")
3734
assert obj is not result
3835

3936

0 commit comments

Comments
 (0)