mirror of https://github.com/python/cpython.git
This test relied on hard tab characters, so failed after whitespace
normalization. Now uses \t in strings instead of hard tabs.
This commit is contained in:
parent
4fb1fe8bd2
commit
c59fb2d230
|
@ -271,7 +271,7 @@ def test_header_splitter(self):
|
||||||
MIME-Version: 1.0
|
MIME-Version: 1.0
|
||||||
Content-Transfer-Encoding: 7bit
|
Content-Transfer-Encoding: 7bit
|
||||||
X-Foobar-Spoink-Defrobnit: wasnipoop; giraffes="very-long-necked-animals";
|
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 @@ def test_body_line_iterator(self):
|
||||||
eq(len(lines), 43)
|
eq(len(lines), 43)
|
||||||
eq(EMPTYSTRING.join(lines), """\
|
eq(EMPTYSTRING.join(lines), """\
|
||||||
Send Ppp mailing list submissions to
|
Send Ppp mailing list submissions to
|
||||||
ppp@zzz.org
|
\tppp@zzz.org
|
||||||
|
|
||||||
To subscribe or unsubscribe via the World Wide Web, visit
|
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
|
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
|
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
|
When replying, please edit your Subject line so it is more specific
|
||||||
than "Re: Contents of Ppp digest..."
|
than "Re: Contents of Ppp digest..."
|
||||||
|
|
Loading…
Reference in New Issue