]> granicus.if.org Git - python/commitdiff
test__all__(): Fix the import list.
authorBarry Warsaw <barry@python.org>
Tue, 1 Oct 2002 17:57:06 +0000 (17:57 +0000)
committerBarry Warsaw <barry@python.org>
Tue, 1 Oct 2002 17:57:06 +0000 (17:57 +0000)
Lib/email/test/test_email.py

index 459915696703c70326b8b2a2222597936f1119a6..926c6bf5867d0613517b65d50d68a89be0fc347e 100644 (file)
@@ -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'])