Skip to content

Commit 218b4bf

Browse files
bpo-34661: Fix test skipping call. (GH-9266)
(cherry picked from commit e78734d) Co-authored-by: Benjamin Peterson <[email protected]>
1 parent 1550b73 commit 218b4bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎Lib/test/test_shutil.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1125,7 +1125,7 @@ def test_unzip_zipfile(self):
11251125
except subprocess.CalledProcessError as exc:
11261126
details = exc.output.decode(errors="replace")
11271127
if 'unrecognized option: t' in details:
1128-
self.skip("unzip doesn't support -t")
1128+
self.skipTest("unzip doesn't support -t")
11291129
msg = "{}\n\n**Unzip Output**\n{}"
11301130
self.fail(msg.format(exc, details))
11311131

0 commit comments

Comments
 (0)