From 103cb481bc46e9dc8c5ca047b460265b5d68ee32 Mon Sep 17 00:00:00 2001 From: Bruno Wagner Date: Fri, 5 Jun 2015 19:36:08 -0300 Subject: 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. --- service/test/support/integration/app_test_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'service/test/support') diff --git a/service/test/support/integration/app_test_client.py b/service/test/support/integration/app_test_client.py index 25171353..a1b0c3b8 100644 --- a/service/test/support/integration/app_test_client.py +++ b/service/test/support/integration/app_test_client.py @@ -125,7 +125,7 @@ class AppTestClient(object): self.soledad_querier.soledad.create_doc(_dict) def add_mail_to_inbox(self, input_mail): - mail = self.mailboxes.inbox().add(input_mail) + mail = self.mailboxes.inbox.add(input_mail) if input_mail.tags: mail.update_tags(input_mail.tags) self.search_engine.index_mail(mail) -- cgit v1.2.3