[Python-checkins] r84123 - python/branches/py3k/Lib/test/test_zipimport.py

victor.stinner python-checkins at python.org
Tue Aug 17 02:44:11 CEST 2010


Author: victor.stinner
Date: Tue Aug 17 02:44:11 2010
New Revision: 84123

Log:
test_zipimport: fix test name

Modified:
   python/branches/py3k/Lib/test/test_zipimport.py

Modified: python/branches/py3k/Lib/test/test_zipimport.py
==============================================================================
--- python/branches/py3k/Lib/test/test_zipimport.py	(original)
+++ python/branches/py3k/Lib/test/test_zipimport.py	Tue Aug 17 02:44:11 2010
@@ -384,7 +384,7 @@
 
     @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))


More information about the Python-checkins mailing list