summaryrefslogtreecommitdiff
path: root/Lib/test/test_email.py
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-02-09 12:53:29 -0500
committerR David Murray <rdmurray@bitdance.com>2013-02-09 12:53:29 -0500
commita5e7f8f8e043ff22889ad39c62130966706e36cb (patch)
treed6a3a795c5dfa621564d0033184e8004471015d9 /Lib/test/test_email.py
parent56656b01182a2f480b333d9137908faff10b9ba5 (diff)
downloadcpython-git-a5e7f8f8e043ff22889ad39c62130966706e36cb.tar.gz
#16564: test to confirm behavior that regressed in python3.
Also add running of test_email_renamed to the email regrtest. It contains tests that the base email/tests/test_email.py does not, which I discovered while trying to backport this test for confirmation of the behavior.
Diffstat (limited to 'Lib/test/test_email.py')
-rw-r--r--Lib/test/test_email.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py
index cb4ee6083e..ab6e0b0e25 100644
--- a/Lib/test/test_email.py
+++ b/Lib/test/test_email.py
@@ -3,10 +3,12 @@
# The specific tests now live in Lib/email/test
from email.test.test_email import suite
+from email.test.test_email_renamed import suite as suite2
from test import test_support
def test_main():
test_support.run_unittest(suite())
+ test_support.run_unittest(suite2())
if __name__ == '__main__':
test_main()