diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-03-30 02:14:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-03-30 02:14:21 (GMT) |
commit | 33cd7ef867560cc78896e522198d02d729dd8522 (patch) | |
tree | 59efe0bae1efba918f8cae0f6c62cf34c64f4005 /Lib | |
parent | 76a982a027d72287a6d9113b1d65ec6d327d744d (diff) | |
download | cpython-33cd7ef867560cc78896e522198d02d729dd8522.zip cpython-33cd7ef867560cc78896e522198d02d729dd8522.tar.gz cpython-33cd7ef867560cc78896e522198d02d729dd8522.tar.bz2 |
fix import
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/email/test/test_email_codecs_renamed.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/test/test_email_codecs_renamed.py b/Lib/email/test/test_email_codecs_renamed.py index 56baccd..532750a 100644 --- a/Lib/email/test/test_email_codecs_renamed.py +++ b/Lib/email/test/test_email_codecs_renamed.py @@ -3,7 +3,7 @@ # email package unit tests for (optional) Asian codecs import unittest -from test.test_support import TestSkipped, run_unittest +from test.test_support import run_unittest from email.test.test_email import TestEmailBase from email.charset import Charset @@ -15,7 +15,7 @@ from email.message import Message try: unicode('foo', 'euc-jp') except LookupError: - raise TestSkipped + raise unittest.SkipTest |