diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-08-09 22:09:08 +0200 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-08-11 17:00:33 +0200 |
commit | 46ed5e1731fa0295a7f4b612457069db36bb8e64 (patch) | |
tree | f7b1d81e19f1e86d40c605910063e86feef6eb73 /service/test/support/integration | |
parent | 319e5e2ddd20444bb30f294a2fd08854dfaae494 (diff) |
Worked on integration tests.
Diffstat (limited to 'service/test/support/integration')
-rw-r--r-- | service/test/support/integration/app_test_client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/support/integration/app_test_client.py b/service/test/support/integration/app_test_client.py index ee305c69..31ffcd77 100644 --- a/service/test/support/integration/app_test_client.py +++ b/service/test/support/integration/app_test_client.py @@ -78,7 +78,7 @@ class AppTestClient(object): self.account = IMAPAccount(self.ACCOUNT, self.soledad, account_ready_cb) yield account_ready_cb self.mailboxes = Mailboxes(self.account, self.mail_store, self.soledad_querier, self.search_engine) - self.draft_service = DraftService(self.mailboxes) + self.draft_service = DraftService(self.mail_store) self.mail_service = self._create_mail_service(self.mailboxes, self.mail_sender, self.mail_store, self.soledad_querier, self.search_engine) mails = yield self.mail_service.all_mails() |