summaryrefslogtreecommitdiff
path: root/service/test/support
diff options
context:
space:
mode:
authorCaio Carrara <ccarrara@thoughtworks.com>2016-04-13 16:53:40 -0300
committerCaio Carrara <ccarrara@thoughtworks.com>2016-04-13 16:56:08 -0300
commit77e374ecca7f1d5ded1c6d20059d2ff8a05e23a6 (patch)
treeec7534b8215c31435023848d5fc85b2f430e0287 /service/test/support
parent596f817d452a10da889fbfbbd7a2c74522a80a3e (diff)
Issue #674: Update Account usage to pass user_id
There is an update on leap_mail where an user id became required to create an Account. So, this change update the Account usage on user agent to pass this parameter.
Diffstat (limited to 'service/test/support')
-rw-r--r--service/test/support/integration/app_test_client.py2
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 95facec0..49f0552a 100644
--- a/service/test/support/integration/app_test_client.py
+++ b/service/test/support/integration/app_test_client.py
@@ -111,7 +111,7 @@ class AppTestAccount(object):
shutil.rmtree(soledad_test_folder)
def _initialize_account(self):
- self.account = Account(self.soledad)
+ self.account = Account(self.soledad, self._user_id)
return self.account.deferred_initialization
def _create_mail_service(self, mail_sender, mail_store, search_engine, attachment_store):