diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-06-05 19:36:08 -0300 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-06-05 19:36:08 -0300 |
commit | 103cb481bc46e9dc8c5ca047b460265b5d68ee32 (patch) | |
tree | acb7cf1395b879fcd9730766498415fce58d137f /service/test/integration/test_contacts.py | |
parent | a2886f31583722c5f08a965325156f8eb1e18509 (diff) |
Added creation of input mail from python message
That way we don't need extra logic for the welcome
mail, we just have to read the file and send the contents
to the input mail parser and that's it.
Also moved the logic of adding a welcome mail to the mailboxes
because it has knowledge of mailbox methods anyways.
Diffstat (limited to 'service/test/integration/test_contacts.py')
-rw-r--r-- | service/test/integration/test_contacts.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/integration/test_contacts.py b/service/test/integration/test_contacts.py index f9cde9e5..1d82b0d7 100644 --- a/service/test/integration/test_contacts.py +++ b/service/test/integration/test_contacts.py @@ -87,7 +87,7 @@ class ContactsTest(SoledadTestBase): self.add_mail_to_inbox(to_be_bounced) bounced_mail_template = MailBuilder().build_input_mail() - bounced_mail = self.mailboxes.inbox().add(bounced_mail_template) + bounced_mail = self.mailboxes.inbox.add(bounced_mail_template) bounced_mail.hdoc.content = self._bounced_mail_hdoc_content() bounced_mail.save() self.search_engine.index_mail(bounced_mail) |