test__all__(): Fix the import list.

This commit is contained in:
Barry Warsaw 2002-10-01 17:57:06 +00:00
parent 6bfa2e6892
commit 0ac885e821
1 changed files with 4 additions and 4 deletions

View 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'])