diff options
author | Patrick Maia <patrickjourdanmaia@gmail.com> | 2014-11-12 16:39:21 +0000 |
---|---|---|
committer | Patrick Maia <patrickjourdanmaia@gmail.com> | 2014-11-12 16:39:43 +0000 |
commit | fa24aaf94af1dd8b4ead48d6518d3770a60d1211 (patch) | |
tree | 85fcc33ecb4b3b5f1a33fb286669a38d73b5de4b /service/test | |
parent | 077c8abf47abb10c5c1dc92ab5c3a36d353281ec (diff) |
Card #30 - fixes bug that was preventing attachment download
Diffstat (limited to 'service/test')
-rw-r--r-- | service/test/support/integration_helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/service/test/support/integration_helper.py b/service/test/support/integration_helper.py index 36d297d6..0411abea 100644 --- a/service/test/support/integration_helper.py +++ b/service/test/support/integration_helper.py @@ -186,7 +186,7 @@ class SoledadTestBase: def get_attachment(self, ident, encoding): request = requestMock(path='/attachment/' + ident) request.args = { - 'encoding': encoding + 'encoding': [encoding] } _render(self.resource, request) return request.getWrittenData() |