summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_imp.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-08-13 22:23:24 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-08-13 22:23:24 (GMT)
commit09c449c7de0fea077ceaee5cb04017d6994341e7 (patch)
treeed3a5e7181c15328a6f8ac559b4863c6fe7dd969 /Lib/test/test_imp.py
parent042b128f58a952b2cd04bd5b7401bd54c67a687e (diff)
downloadcpython-09c449c7de0fea077ceaee5cb04017d6994341e7.zip
cpython-09c449c7de0fea077ceaee5cb04017d6994341e7.tar.gz
cpython-09c449c7de0fea077ceaee5cb04017d6994341e7.tar.bz2
Fix a typo: TESTFN_UNENCODEABLE => TESTFN_UNENCODABLE
Diffstat (limited to 'Lib/test/test_imp.py')
-rw-r--r--Lib/test/test_imp.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_imp.py b/Lib/test/test_imp.py
index 233d3da..eb9eaef 100644
--- a/Lib/test/test_imp.py
+++ b/Lib/test/test_imp.py
@@ -307,10 +307,10 @@ class PEP3147Tests(unittest.TestCase):
class NullImporterTests(unittest.TestCase):
- @unittest.skipIf(support.TESTFN_UNENCODEABLE is None,
+ @unittest.skipIf(support.TESTFN_UNENCODABLE is None,
"Need an undecodeable filename")
def test_unencodeable(self):
- name = support.TESTFN_UNENCODEABLE
+ name = support.TESTFN_UNENCODABLE
os.mkdir(name)
try:
self.assertRaises(ImportError, imp.NullImporter, name)