We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 043430c commit 7e699b8Copy full SHA for 7e699b8
pandas/tests/copy_view/test_array.py
@@ -1,8 +1,6 @@
1
import numpy as np
2
import pytest
3
4
-from pandas._config import using_string_dtype
5
-
6
from pandas import (
7
DataFrame,
8
Series,
@@ -159,7 +157,6 @@ def test_dataframe_array_ea_dtypes(using_copy_on_write):
159
157
assert arr.flags.writeable is True
160
158
161
162
-@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
163
def test_dataframe_array_string_dtype(using_copy_on_write, using_array_manager):
164
df = DataFrame({"a": ["a", "b"]}, dtype="string")
165
arr = np.asarray(df)
0 commit comments