aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_email.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_email.py')
-rw-r--r--Lib/test/test_email.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py
index cb4ee6083e4..5eebba5590c 100644
--- a/Lib/test/test_email.py
+++ b/Lib/test/test_email.py
@@ -1,12 +1,14 @@
-# Copyright (C) 2001,2002 Python Software Foundation
+# Copyright (C) 2001-2007 Python Software Foundation
# email package unit tests
# The specific tests now live in Lib/email/test
from email.test.test_email import suite
-from test import test_support
+from email.test.test_email_codecs import suite as codecs_suite
+from test import support
def test_main():
- test_support.run_unittest(suite())
+ support.run_unittest(suite())
+ support.run_unittest(codecs_suite())
if __name__ == '__main__':
test_main()