diff options
author | Victor Shyba <victor.shyba@gmail.com> | 2015-03-18 16:58:54 -0300 |
---|---|---|
committer | Victor Shyba <victor.shyba@gmail.com> | 2015-03-18 16:59:33 -0300 |
commit | bdba0f2fce00d53d445371be3c09cda01274d0e8 (patch) | |
tree | 3b1152f31bbab0274901fccc0372283300deab24 /service/test/integration/test_retrieve_attachment.py | |
parent | 0dbd662b5bdc372f2148f72c86412e0555eac1dc (diff) |
no more self.client, since those methods are available from test case base
Diffstat (limited to 'service/test/integration/test_retrieve_attachment.py')
-rw-r--r-- | service/test/integration/test_retrieve_attachment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/integration/test_retrieve_attachment.py b/service/test/integration/test_retrieve_attachment.py index c81b684a..2c446b42 100644 --- a/service/test/integration/test_retrieve_attachment.py +++ b/service/test/integration/test_retrieve_attachment.py @@ -28,7 +28,7 @@ class RetrieveAttachmentTest(SoledadTestBase): 'phash': ident, 'content-type': 'text/plain; charset=US-ASCII; name="attachment_pequeno.txt"'} - self.client.add_document_to_soledad(attachment_dict) + self.add_document_to_soledad(attachment_dict) d = self.get_attachment(ident, 'base64') |