summaryrefslogtreecommitdiff
path: root/service/test/integration/test_retrieve_attachment.py
diff options
context:
space:
mode:
Diffstat (limited to 'service/test/integration/test_retrieve_attachment.py')
-rw-r--r--service/test/integration/test_retrieve_attachment.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/service/test/integration/test_retrieve_attachment.py b/service/test/integration/test_retrieve_attachment.py
index ac6e52e7..b46d40d5 100644
--- a/service/test/integration/test_retrieve_attachment.py
+++ b/service/test/integration/test_retrieve_attachment.py
@@ -86,9 +86,7 @@ class RetrieveAttachmentTest(SoledadTestBase):
datagen, headers = multipart_encode([file])
post_data = "".join(datagen)
- response, first_request = yield self.app_test_client.get('/', as_json=False)
- session = first_request.getSession()
- _, req = yield self.app_test_client.post_attachment(post_data, headers, session)
+ _, req = yield self.app_test_client.post_attachment(post_data, headers)
self.assertEqual(201, req.code)
self.assertEqual('/attachment/B5B4ED80AC3B894523D72E375DACAA2FC6606C18EDF680FE95903086C8B5E14A', req.responseHeaders.getRawHeaders('location')[0])