diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-01-18 22:28:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-18 21:28:18 +0200 |
commit | 1292aa6db5bed889a3c87df443754fcae0177801 (patch) | |
tree | 131eec842d87333ea97fcb90cb58764ac4652c56 /Lib/test/test_zipfile64.py | |
parent | ff7703c4b609a697ada8165fd1c52a73404b6d07 (diff) | |
download | cpython-git-1292aa6db5bed889a3c87df443754fcae0177801.tar.gz |
bpo-46425: Fix direct invocation of multiple test modules (GH-30666)
Diffstat (limited to 'Lib/test/test_zipfile64.py')
-rw-r--r-- | Lib/test/test_zipfile64.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_zipfile64.py b/Lib/test/test_zipfile64.py index 810fdedef3..0947013afb 100644 --- a/Lib/test/test_zipfile64.py +++ b/Lib/test/test_zipfile64.py @@ -18,8 +18,9 @@ import sys from tempfile import TemporaryFile from test.support import os_helper -from test.support import TESTFN, requires_zlib +from test.support import requires_zlib +TESTFN = os_helper.TESTFN TESTFN2 = TESTFN + "2" # How much time in seconds can pass before we print a 'Still working' message. |