Skip to content

Commit 6169ea9

Browse files
authored
Improve test_valid_complex_string_with_space() xfail condition (#1441)
1 parent dec5faa commit 6169ea9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/validators/test_complex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def test_complex_strict(input_value, expected):
8585

8686

8787
@pytest.mark.xfail(
88-
platform.python_implementation() == 'PyPy' and sys.version_info < (3, 10),
88+
platform.python_implementation() == 'PyPy' and sys.pypy_version_info < (7, 3, 17),
8989
reason='PyPy cannot process this string due to a bug, even if this string is considered valid in python',
9090
)
9191
def test_valid_complex_string_with_space():

0 commit comments

Comments
 (0)