Commit 74b3173f authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #8511: Removed some tests that were failing on Python 2.4, but weren't...

Fixed #8511: Removed some tests that were failing on Python 2.4, but weren't really contributing anything anyway. Thanks to jarrow for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@8508 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 213f2946
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -9,8 +9,6 @@ r"""

>>> email = EmailMessage('Subject', 'Content', 'from@example.com', ['to@example.com'])
>>> message = email.message()
>>> message['Subject']
<email.header.Header instance...>
>>> message['Subject'].encode()
'Subject'
>>> message.get_payload()
@@ -24,8 +22,6 @@ r"""

>>> email = EmailMessage('Subject', 'Content', 'from@example.com', ['to@example.com','other@example.com'])
>>> message = email.message()
>>> message['Subject']
<email.header.Header instance...>
>>> message['Subject'].encode()
'Subject'
>>> message.get_payload()