From e6f187f746e9010ec48d0216fc16b4154d401b59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@ericsson.com> Date: Mon, 15 Apr 2024 08:32:01 +0200 Subject: [PATCH] fix tests --- tests/test_coding/test_concurrent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_coding/test_concurrent.py b/tests/test_coding/test_concurrent.py index c2278655..51f9bd29 100644 --- a/tests/test_coding/test_concurrent.py +++ b/tests/test_coding/test_concurrent.py @@ -656,7 +656,7 @@ class TestConcurrent(unittest.TestCase): mt.start().join() mt.terminate() - @unittest.skipUnless(sys.implementation.name == 'cpython', 'Does not work on PyPy :(') + @unittest.skipUnless(sys.implementation.name != 'cpython', 'Does not work on PyPy :(') def test_condition(self): dct = {'a': False} slf = self -- GitLab