diff options
author | Georg Brandl <georg@python.org> | 2010-02-06 23:54:04 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-02-06 23:54:04 (GMT) |
commit | 7e1902bced615e3a1a88f01c5fd899602301043a (patch) | |
tree | 867b08600a839c0bf9df4081a2721685a6915fd8 /Lib/email/test | |
parent | 28aeb0d0ab01fc4a78c4934b778fbf2f2954c023 (diff) | |
download | cpython-7e1902bced615e3a1a88f01c5fd899602301043a.zip cpython-7e1902bced615e3a1a88f01c5fd899602301043a.tar.gz cpython-7e1902bced615e3a1a88f01c5fd899602301043a.tar.bz2 |
Add missing import when running these tests standalone.
Diffstat (limited to 'Lib/email/test')
-rw-r--r-- | Lib/email/test/test_email_torture.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/test/test_email_torture.py b/Lib/email/test/test_email_torture.py index 3ec4c66..9dfa602 100644 --- a/Lib/email/test/test_email_torture.py +++ b/Lib/email/test/test_email_torture.py @@ -13,7 +13,7 @@ from cStringIO import StringIO from types import ListType from email.test.test_email import TestEmailBase -from test.test_support import TestSkipped +from test.test_support import TestSkipped, run_unittest import email from email import __file__ as testfile @@ -128,7 +128,7 @@ def suite(): def test_main(): for testclass in _testclasses(): - test_support.run_unittest(testclass) + run_unittest(testclass) |