From: Guido van Rossum Date: Sun, 6 Oct 2002 14:37:11 +0000 (+0000) Subject: Make sure the email test suite can be run both stand-alone and under X-Git-Tag: v2.3c1~3871 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b03fac2ded952e87e425bc20ffd9aa0d06d7c9cd;p=thirdparty%2FPython%2Fcpython.git Make sure the email test suite can be run both stand-alone and under supervision of regrtest.py. Will backport to 2.2.2. --- diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 5df59606086a..de0eee36b357 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -4,8 +4,10 @@ import unittest # The specific tests now live in Lib/email/test from email.test.test_email import suite +from test.test_support import run_suite +def test_main(): + run_suite(suite()) - if __name__ == '__main__': - unittest.main(defaultTest='suite') + test_main()