Skip to content

Commit

Permalink
bpo-34661: Fix test skipping call. (pythonGH-9266)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminp committed Sep 13, 2018
1 parent a710ebd commit e78734d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_shutil.py
Expand Up @@ -1182,7 +1182,7 @@ def test_unzip_zipfile(self):
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))

Expand Down

0 comments on commit e78734d

Please sign in to comment.