diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-04 06:26:17 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-04 06:26:17 (GMT) |
commit | c59fb2d2300d0d06f25ebdfc34d59ee07fcb0a15 (patch) | |
tree | 2152dd0b8a2389d6dc513588d01514eb56ea6017 | |
parent | 4fb1fe8bd20d0d3cfe15d4dcfa520b14c863f10a (diff) | |
download | cpython-c59fb2d2300d0d06f25ebdfc34d59ee07fcb0a15.zip cpython-c59fb2d2300d0d06f25ebdfc34d59ee07fcb0a15.tar.gz cpython-c59fb2d2300d0d06f25ebdfc34d59ee07fcb0a15.tar.bz2 |
This test relied on hard tab characters, so failed after whitespace
normalization. Now uses \t in strings instead of hard tabs.
-rw-r--r-- | Lib/test/test_email.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Lib/test/test_email.py b/Lib/test/test_email.py index 96facd6..7072005 100644 --- a/Lib/test/test_email.py +++ b/Lib/test/test_email.py @@ -271,7 +271,7 @@ Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals"; - spooge="yummy"; hippos="gargantuan"; marshmallows="gooey" +\tspooge="yummy"; hippos="gargantuan"; marshmallows="gooey" ''') @@ -801,15 +801,15 @@ class TestIterators(TestEmailBase): eq(len(lines), 43) eq(EMPTYSTRING.join(lines), """\ Send Ppp mailing list submissions to - ppp@zzz.org +\tppp@zzz.org To subscribe or unsubscribe via the World Wide Web, visit - http://www.zzz.org/mailman/listinfo/ppp +\thttp://www.zzz.org/mailman/listinfo/ppp or, via email, send a message with subject or body 'help' to - ppp-request@zzz.org +\tppp-request@zzz.org You can reach the person managing the list at - ppp-admin@zzz.org +\tppp-admin@zzz.org When replying, please edit your Subject line so it is more specific than "Re: Contents of Ppp digest..." |