diff options
Diffstat (limited to 'tests/test_concurrency.py')
-rw-r--r-- | tests/test_concurrency.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 2877b7c2..85f4a3f2 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -365,9 +365,9 @@ class MultiprocessingTest(CoverageTest): """Test support of the multiprocessing module.""" def setUp(self): - super(MultiprocessingTest, self).setUp() if not multiprocessing: self.skipTest("No multiprocessing in this Python") # pragma: only jython + super(MultiprocessingTest, self).setUp() def try_multiprocessing_code( self, code, expected_out, the_module, concurrency="multiprocessing" |