diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2015-07-27 16:41:09 -0300 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2015-08-11 17:00:28 +0200 |
commit | 769d20969dda078b01fc82b5ecd27632936dbe4a (patch) | |
tree | 5e980f180330ce103dad444242ffd6b37db75132 /service/test/support | |
parent | 66420248e49f7f115fa113287828696613dbaff9 (diff) |
fix attachment integration test
Diffstat (limited to 'service/test/support')
-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 67cd9df0..db85f931 100644 --- a/service/test/support/integration/app_test_client.py +++ b/service/test/support/integration/app_test_client.py @@ -130,7 +130,7 @@ class AppTestClient(object): return self._render(request) def add_document_to_soledad(self, _dict): - self.soledad_querier.soledad.create_doc(_dict) + return self.soledad_querier.soledad.create_doc(_dict) @defer.inlineCallbacks def add_mail_to_inbox(self, input_mail): |