From e78734d579439861f6d7e12f35d268836b2c1e24 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 13 Sep 2018 10:57:23 -0700 Subject: bpo-34661: Fix test skipping call. (GH-9266) --- Lib/test/test_shutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py index 797228d..a169c36 100644 --- a/Lib/test/test_shutil.py +++ b/Lib/test/test_shutil.py @@ -1182,7 +1182,7 @@ class TestShutil(unittest.TestCase): except subprocess.CalledProcessError as exc: details = exc.output.decode(errors="replace") if 'unrecognized option: t' in details: - self.skip("unzip doesn't support -t") + self.skipTest("unzip doesn't support -t") msg = "{}\n\n**Unzip Output**\n{}" self.fail(msg.format(exc, details)) -- cgit v0.12