From: Victor Stinner Date: Tue, 17 Aug 2010 00:44:11 +0000 (+0000) Subject: test_zipimport: fix test name X-Git-Tag: v3.2a2~268 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=36e791179c3bb49d45a17c27fbc39ec9b2a8694f;p=python test_zipimport: fix test name --- diff --git a/Lib/test/test_zipimport.py b/Lib/test/test_zipimport.py index 61a6c0a16b..838e1b561f 100644 --- a/Lib/test/test_zipimport.py +++ b/Lib/test/test_zipimport.py @@ -384,7 +384,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase): @unittest.skipIf(support.TESTFN_UNENCODABLE is None, "need an unencodable filename") - def testUndecodable(self): + def testUnencodable(self): filename = support.TESTFN_UNENCODABLE + ".zip" z = ZipFile(filename, "w") zinfo = ZipInfo(TESTMOD + ".py", time.localtime(NOW))