diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-24 05:06:17 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-24 05:06:17 +0000 |
| commit | 74b3173fba89b30415f5e247e2ff2f33a7185fbe (patch) | |
| tree | 33fe2742dbb32b96447ee66ff0a25f1094fbb61a /tests/regressiontests/mail/tests.py | |
| parent | 213f294638d353a8763e78e7426ddbea32f0453c (diff) | |
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
Diffstat (limited to 'tests/regressiontests/mail/tests.py')
| -rw-r--r-- | tests/regressiontests/mail/tests.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/regressiontests/mail/tests.py b/tests/regressiontests/mail/tests.py index ba08929137..c8b85f48c6 100644 --- a/tests/regressiontests/mail/tests.py +++ b/tests/regressiontests/mail/tests.py @@ -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() |
