test_zipimport: fix test name

This commit is contained in:
Victor Stinner 2010-08-17 00:44:11 +00:00
parent 4a3733d160
commit 36e791179c
1 changed files with 1 additions and 1 deletions

View File

@ -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))