Skip to content

Commit

Permalink
TST(string dtype): Resolve xfails in stack_unstack (#60703)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhshadrach authored Jan 12, 2025
1 parent a81d52f commit 18dbceb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions pandas/tests/frame/test_stack_unstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
import numpy as np
import pytest

from pandas._config import using_string_dtype

from pandas._libs import lib

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

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

@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
@pytest.mark.filterwarnings(
"ignore:The previous implementation of stack is deprecated"
)
Expand Down

0 comments on commit 18dbceb

Please sign in to comment.