Commit e78734d5 authored by Benjamin Peterson's avatar Benjamin Peterson Committed by GitHub

bpo-34661: Fix test skipping call. (GH-9266)

parent a710ebd2
......@@ -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))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment