Skip to content

Commit d226301

Browse files
update xfails
1 parent 444ebdb commit d226301

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pandas/tests/copy_view/test_interp_fillna.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33

44
from pandas._config import using_string_dtype
55

6-
from pandas.compat import HAS_PYARROW
7-
86
from pandas import (
97
NA,
108
ArrowDtype,
@@ -161,7 +159,7 @@ def test_interpolate_cleaned_fill_method(using_copy_on_write):
161159
tm.assert_frame_equal(df, df_orig)
162160

163161

164-
@pytest.mark.xfail(using_string_dtype() and HAS_PYARROW, reason="TODO(infer_string)")
162+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
165163
def test_interpolate_object_convert_no_op(using_copy_on_write):
166164
df = DataFrame({"a": ["a", "b", "c"], "b": 1})
167165
arr_a = get_array(df, "a")

pandas/tests/frame/methods/test_info.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
from pandas._config import using_string_dtype
1111

1212
from pandas.compat import (
13-
HAS_PYARROW,
1413
IS64,
1514
PYPY,
1615
)
@@ -521,7 +520,7 @@ def test_info_int_columns():
521520
assert result == expected
522521

523522

524-
@pytest.mark.xfail(using_string_dtype() and HAS_PYARROW, reason="TODO(infer_string)")
523+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
525524
def test_memory_usage_empty_no_warning():
526525
# GH#50066
527526
df = DataFrame(index=["a", "b"])

0 commit comments

Comments
 (0)