From 7e1902bced615e3a1a88f01c5fd899602301043a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 6 Feb 2010 23:54:04 +0000 Subject: Add missing import when running these tests standalone. --- Lib/email/test/test_email_torture.py | 4 ++-- 1 file 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) -- cgit v0.12