From 0ac885e8216436fb000da97702a9cf4c53b710f2 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 1 Oct 2002 17:57:06 +0000 Subject: [PATCH] test__all__(): Fix the import list. --- Lib/email/test/test_email.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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']) -- 2.40.0