test_zipimport: fix test name
This commit is contained in:
parent
4a3733d160
commit
36e791179c
|
@ -384,7 +384,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
|
||||||
|
|
||||||
@unittest.skipIf(support.TESTFN_UNENCODABLE is None,
|
@unittest.skipIf(support.TESTFN_UNENCODABLE is None,
|
||||||
"need an unencodable filename")
|
"need an unencodable filename")
|
||||||
def testUndecodable(self):
|
def testUnencodable(self):
|
||||||
filename = support.TESTFN_UNENCODABLE + ".zip"
|
filename = support.TESTFN_UNENCODABLE + ".zip"
|
||||||
z = ZipFile(filename, "w")
|
z = ZipFile(filename, "w")
|
||||||
zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW))
|
zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW))
|
||||||
|
|
Loading…
Reference in New Issue