From: Barry Warsaw <barry@python.org>
Date: Tue, 1 Oct 2002 17:57:06 +0000 (+0000)
Subject: test__all__(): Fix the import list.
X-Git-Tag: v2.3c1~3909
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0ac885e8216436fb000da97702a9cf4c53b710f2;p=python

test__all__(): Fix the import list.
---

diff --git a/Lib/email/test/test_email.py b/Lib/email/test/test_email.py
index 4599156967..926c6bf586 100644
--- a/Lib/email/test/test_email.py
+++ b/Lib/email/test/test_email.py
@@ -1604,10 +1604,10 @@ class TestMiscellaneous(unittest.TestCase):
         all = module.__all__
         all.sort()
         self.assertEqual(all, ['Charset', 'Encoders', 'Errors', 'Generator',
-                               'Header', 'Iterators', 'MIMEAudio',
-                               'MIMEBase', 'MIMEImage', 'MIMEMessage',
-                               'MIMEText', 'Message', 'Parser',
-                               'Utils', 'base64MIME',
+                               'Header', 'Iterators', 'MIMEAudio', 'MIMEBase',
+                               'MIMEImage', 'MIMEMessage', 'MIMEMultipart',
+                               'MIMENonMultipart', 'MIMEText', 'Message',
+                               'Parser', 'Utils', 'base64MIME',
                                'message_from_file', 'message_from_string',
                                'quopriMIME'])