summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-17 00:44:11 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-17 00:44:11 (GMT)
commit36e791179c3bb49d45a17c27fbc39ec9b2a8694f (patch)
tree631a6cd4c12a2cb618e06d78c22c888eb99e60de /Lib
parent4a3733d16021cdf8f924bf65b7658dbf46da9ea4 (diff)
downloadcpython-36e791179c3bb49d45a17c27fbc39ec9b2a8694f.zip
cpython-36e791179c3bb49d45a17c27fbc39ec9b2a8694f.tar.gz
cpython-36e791179c3bb49d45a17c27fbc39ec9b2a8694f.tar.bz2
test_zipimport: fix test name
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_zipimport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_zipimport.py b/Lib/test/test_zipimport.py
index 61a6c0a..838e1b5 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))