mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
Fix typo
This commit is contained in:
parent
3d84acf113
commit
9b5faa0e5f
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ class EmailMessageTestCase(TestCase):
|
||||||
|
|
||||||
def _get_email_object(self, name):
|
def _get_email_object(self, name):
|
||||||
with open(join(dirname(__file__), 'messages', name), 'rb') as f:
|
with open(join(dirname(__file__), 'messages', name), 'rb') as f:
|
||||||
return email.message_from_files(f)
|
return email.message_from_file(f)
|
||||||
|
|
||||||
def _headers_identical(self, left, right, header=None):
|
def _headers_identical(self, left, right, header=None):
|
||||||
""" Check if headers are (close enough to) identical.
|
""" Check if headers are (close enough to) identical.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue