Skip to content

Commit 18dbceb

Browse files
authored
TST(string dtype): Resolve xfails in stack_unstack (#60703)
1 parent a81d52f commit 18dbceb

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/tests/frame/test_stack_unstack.py

-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import numpy as np
66
import pytest
77

8-
from pandas._config import using_string_dtype
9-
108
from pandas._libs import lib
119

1210
import pandas as pd
@@ -1675,7 +1673,6 @@ def test_unstack_multiple_no_empty_columns(self):
16751673
expected = unstacked.dropna(axis=1, how="all")
16761674
tm.assert_frame_equal(unstacked, expected)
16771675

1678-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
16791676
@pytest.mark.filterwarnings(
16801677
"ignore:The previous implementation of stack is deprecated"
16811678
)
@@ -1923,7 +1920,6 @@ def test_stack_level_name(self, multiindex_dataframe_random_data, future_stack):
19231920
expected = frame.stack(future_stack=future_stack)
19241921
tm.assert_series_equal(result, expected)
19251922

1926-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
19271923
@pytest.mark.filterwarnings(
19281924
"ignore:The previous implementation of stack is deprecated"
19291925
)

0 commit comments

Comments
 (0)