Skip to content

Commit c2a77c6

Browse files
committed
fix xfail
1 parent 6abc4dc commit c2a77c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_pytypes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,6 @@ def __contains__(self, m):
175175
return m in self.d
176176

177177

178-
@pytest.mark.xfail("env.PYPY and sys.pypy_version_info < (7, 3, 10)")
179178
@pytest.mark.parametrize(
180179
"arg,func",
181180
[
@@ -184,6 +183,7 @@ def __contains__(self, m):
184183
(CustomContains(), m.obj_contains),
185184
],
186185
)
186+
@pytest.mark.xfail("env.PYPY and sys.pypy_version_info < (7, 3, 10)", strict=False)
187187
def test_unhashable_exceptions(arg, func):
188188
class Unhashable:
189189
__hash__ = None

0 commit comments

Comments
 (0)