Skip to content

Commit

Permalink
bpo-34661: Fix test skipping call. (GH-9266)
Browse files Browse the repository at this point in the history
(cherry picked from commit e78734d)

Co-authored-by: Benjamin Peterson <benjamin@python.org>
  • Loading branch information
miss-islington and benjaminp committed Sep 13, 2018
1 parent 1550b73 commit 218b4bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_shutil.py
Expand Up @@ -1125,7 +1125,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 218b4bf

Please sign in to comment.