[Python-checkins] python/dist/src/Lib/email/test test_email_torture.py, 1.5, 1.6

bwarsaw at users.sourceforge.net bwarsaw at users.sourceforge.net
Sun Oct 3 06:02:45 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib/email/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8612

Modified Files:
	test_email_torture.py 
Log Message:
Fix test for FeedParser results.


Index: test_email_torture.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/email/test/test_email_torture.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- test_email_torture.py	7 Oct 2002 17:27:55 -0000	1.5
+++ test_email_torture.py	3 Oct 2004 04:02:43 -0000	1.6
@@ -1,4 +1,4 @@
-# Copyright (C) 2002 Python Software Foundation
+# Copyright (C) 2002-2004 Python Software Foundation
 #
 # A torture test of the email package.  This should not be run as part of the
 # standard Python test suite since it requires several meg of email messages
@@ -53,7 +53,7 @@
         eq(type(payload), ListType)
         eq(len(payload), 12)
         eq(msg.preamble, None)
-        eq(msg.epilogue, '\n\n')
+        eq(msg.epilogue, '\n')
         # Probably the best way to verify the message is parsed correctly is to
         # dump its structure and compare it against the known structure.
         fp = StringIO()



More information about the Python-checkins mailing list