Skip to content

Commit e78734d

Browse files
authored
bpo-34661: Fix test skipping call. (GH-9266)
1 parent a710ebd commit e78734d

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
@@ -1182,7 +1182,7 @@ def test_unzip_zipfile(self):
11821182
except subprocess.CalledProcessError as exc:
11831183
details = exc.output.decode(errors="replace")
11841184
if 'unrecognized option: t' in details:
1185-
self.skip("unzip doesn't support -t")
1185+
self.skipTest("unzip doesn't support -t")
11861186
msg = "{}\n\n**Unzip Output**\n{}"
11871187
self.fail(msg.format(exc, details))
11881188

0 commit comments

Comments
 (0)