]> granicus.if.org Git - python/commitdiff
Fix test for FeedParser results.
authorBarry Warsaw <barry@python.org>
Sun, 3 Oct 2004 04:02:43 +0000 (04:02 +0000)
committerBarry Warsaw <barry@python.org>
Sun, 3 Oct 2004 04:02:43 +0000 (04:02 +0000)
Lib/email/test/test_email_torture.py

index 8d58b463b4cf87e409d4a3abfe2b27efc771fa9f..d708b74f9a3ec964eadbd71605b4f9ff83739393 100644 (file)
@@ -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 @@ class TestCrispinTorture(TortureBase):
         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()