Skip to content

Commit

Permalink
Fixed #11546 -- Modified the mail regression test to avoid getting hu…
Browse files Browse the repository at this point in the history
…ng up on 32/64 bit differences. Thanks to Richard Davies for the report.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11328 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
freakboy3742 committed Jul 25, 2009
1 parent 5d57edc commit 4a01812
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/regressiontests/mail/tests.py
Expand Up @@ -90,8 +90,8 @@
# Make sure we can manually set the From header (#9214)
>>> email = EmailMessage('Subject', 'Content', 'bounce@example.com', ['to@example.com'], headers={'From': 'from@example.com'})
>>> message = email.message()
>>> email = EmailMessage('Subject', 'Content', 'bounce@example.com', ['to@example.com'], headers={'From': 'from@example.com'})
>>> message = email.message()
>>> message['From']
'from@example.com'
Expand All @@ -115,8 +115,7 @@
Date: Fri, 09 Nov 2001 01:08:47 -0000
Message-ID: foo
...
Content-Type: multipart/alternative; boundary="..."
MIME-Version: 1.0
Content-Type: multipart/alternative;...
...
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Expand Down

0 comments on commit 4a01812

Please sign in to comment.