From ce1118a133c4d6af67a6350ac1a6c7c10de3d59a Mon Sep 17 00:00:00 2001 From: Armin Rigo Date: Thu, 3 Sep 2020 08:17:02 +0200 Subject: update to cffi/108825c76286 --- extra_tests/cffi_tests/test_c.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'extra_tests') diff --git a/extra_tests/cffi_tests/test_c.py b/extra_tests/cffi_tests/test_c.py index e76950f4e5..14d3f662a8 100644 --- a/extra_tests/cffi_tests/test_c.py +++ b/extra_tests/cffi_tests/test_c.py @@ -2553,8 +2553,8 @@ def test_errno(): assert get_errno() == 95 def test_errno_callback(): - if globals().get('PY_DOT_PY') == '2.5': - py.test.skip("cannot run this test on py.py with Python 2.5") + if globals().get('PY_DOT_PY'): + py.test.skip("cannot run this test on py.py (e.g. fails on Windows)") set_errno(95) def cb(): e = get_errno() -- cgit v1.2.3-65-gdbad