Skip to content

Commit 1101840

Browse files
add missing strict
1 parent c5283d6 commit 1101840

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/tests/arrays/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ def test_array_copy():
287287
assert tm.shares_memory(a, b)
288288

289289

290-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
290+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
291291
@pytest.mark.parametrize(
292292
"data, expected",
293293
[

pandas/tests/dtypes/test_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ def test_dtype_equal(name1, dtype1, name2, dtype2):
130130
assert not com.is_dtype_equal(dtype1, dtype2)
131131

132132

133-
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)")
133+
@pytest.mark.xfail(using_string_dtype(), reason="TODO(infer_string)", strict=False)
134134
@pytest.mark.parametrize("name,dtype", list(dtypes.items()), ids=lambda x: str(x))
135135
def test_pyarrow_string_import_error(name, dtype):
136136
# GH-44276

0 commit comments

Comments
 (0)