diff options
author | Barry Warsaw <barry@python.org> | 2004-10-03 04:02:43 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2004-10-03 04:02:43 (GMT) |
commit | 1b643596a88d4169810116bf0f0d28560896c828 (patch) | |
tree | 575623b7d32b2a09e017fc85c413748436217409 /Lib | |
parent | 8df5921247fe7f8d35a84557a161cb0c25602b65 (diff) | |
download | cpython-1b643596a88d4169810116bf0f0d28560896c828.zip cpython-1b643596a88d4169810116bf0f0d28560896c828.tar.gz cpython-1b643596a88d4169810116bf0f0d28560896c828.tar.bz2 |
Fix test for FeedParser results.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/email/test/test_email_torture.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/email/test/test_email_torture.py b/Lib/email/test/test_email_torture.py index 8d58b46..d708b74 100644 --- a/Lib/email/test/test_email_torture.py +++ b/Lib/email/test/test_email_torture.py @@ -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() |