From 28ce52715394e1b10774a2d29b7d11e194062d05 Mon Sep 17 00:00:00 2001 From: Felix Hammerl Date: Fri, 13 May 2016 11:22:01 +0200 Subject: Issue #691: Refactor to Twisted 16.1.1 --- service/test/integration/test_retrieve_attachment.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'service/test/integration') diff --git a/service/test/integration/test_retrieve_attachment.py b/service/test/integration/test_retrieve_attachment.py index 31c8c5df..eaf1d36c 100644 --- a/service/test/integration/test_retrieve_attachment.py +++ b/service/test/integration/test_retrieve_attachment.py @@ -40,8 +40,8 @@ class RetrieveAttachmentTest(SoledadTestBase): self.assertEqual(200, req.code) self.assertEquals('pretend to be binary attachment data', attachment) - self.assertEquals(expected_content_disposition, req.outgoingHeaders['content-disposition']) - self.assertEquals(expected_content_type, req.outgoingHeaders['content-type']) + self.assertEquals(expected_content_disposition, req.responseHeaders.getRawHeaders('content-disposition')[0]) + self.assertEquals(expected_content_type, req.responseHeaders.getRawHeaders('content-type')[0]) @defer.inlineCallbacks def test_should_retrieve_attachment_even_if_xsrf_token_not_passed(self): @@ -57,8 +57,8 @@ class RetrieveAttachmentTest(SoledadTestBase): self.assertEqual(200, req.code) self.assertEquals('pretend to be binary attachment data', attachment) - self.assertEquals(expected_content_disposition, req.outgoingHeaders['content-disposition']) - self.assertEquals(expected_content_type, req.outgoingHeaders['content-type']) + self.assertEquals(expected_content_disposition, req.responseHeaders.getRawHeaders('content-disposition')[0]) + self.assertEquals(expected_content_type, req.responseHeaders.getRawHeaders('content-type')[0]) def _create_mail_with_attachment(self): input_mail = MIMEMultipart() @@ -89,7 +89,7 @@ class RetrieveAttachmentTest(SoledadTestBase): _, req = yield self.post_attachment(post_data, headers) self.assertEqual(201, req.code) - self.assertEqual('/attachment/B5B4ED80AC3B894523D72E375DACAA2FC6606C18EDF680FE95903086C8B5E14A', req.headers['Location']) + self.assertEqual('/attachment/B5B4ED80AC3B894523D72E375DACAA2FC6606C18EDF680FE95903086C8B5E14A', req.responseHeaders.getRawHeaders('location')[0]) response_json = {'ident': 'B5B4ED80AC3B894523D72E375DACAA2FC6606C18EDF680FE95903086C8B5E14A', 'content-type': content_type, 'name': filename, -- cgit v1.2.3