diff options
author | R David Murray <rdmurray@bitdance.com> | 2013-02-09 12:53:29 -0500 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2013-02-09 12:53:29 -0500 |
commit | a5e7f8f8e043ff22889ad39c62130966706e36cb (patch) | |
tree | d6a3a795c5dfa621564d0033184e8004471015d9 /Lib/test/test_email.py | |
parent | 56656b01182a2f480b333d9137908faff10b9ba5 (diff) | |
download | cpython-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.py | 2 |
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() |