From 0de3f0197b564c138f4115badd34dbb67628477f Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Wed, 2 Oct 2013 10:58:58 -0400 Subject: [PATCH] Tweak skipIf message --- Lib/test/test_inspect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index 2b7ba15ed3..fb5fe17e22 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -2412,7 +2412,7 @@ class TestMain(unittest.TestCase): self.assertEqual(err, b'') @unittest.skipIf(ThreadPoolExecutor is None, - 'multiprocessing required to test __qualname__ for source files') + 'threads required to test __qualname__ for source files') def test_qualname_source(self): rc, out, err = assert_python_ok('-m', 'inspect', 'concurrent.futures:ThreadPoolExecutor') -- 2.50.1