diff options
| author | Victor Shyba <victor1984@riseup.net> | 2017-06-22 02:37:37 -0300 | 
|---|---|---|
| committer | Victor Shyba <victor1984@riseup.net> | 2017-07-02 01:32:39 -0300 | 
| commit | 32322267dd9e89cb6f0ed07ac7869a57f0eaeb47 (patch) | |
| tree | 885ef1e37920297d3a127c52f42b02b1272c6e65 /testing/tests/server/test_incoming_resource.py | |
| parent | b9a906aadbf9561cff76d406d89b644ee1f0e67a (diff) | |
[bug] incoming doesnt accept encryption schemes
According to /incoming specification, this parameter doesn't exists. It
was added on MX side and brought here on transition. This commit
explicitly removes it, leaving a track on history that it got removed
during transition. Further work on MX will also remove the "NONE"
encryption scheme, which is part of dead code.
Diffstat (limited to 'testing/tests/server/test_incoming_resource.py')
| -rw-r--r-- | testing/tests/server/test_incoming_resource.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/testing/tests/server/test_incoming_resource.py b/testing/tests/server/test_incoming_resource.py index e9148b4a..16e1e720 100644 --- a/testing/tests/server/test_incoming_resource.py +++ b/testing/tests/server/test_incoming_resource.py @@ -38,9 +38,9 @@ class IncomingResourceTestCase(unittest.TestCase):      def test_save_document(self):          formatter = IncomingFormatter() -        doc_id, scheme = uuid4().hex, EncryptionSchemes.NONE +        doc_id, scheme = uuid4().hex, EncryptionSchemes.PUBKEY          content = 'Incoming content' -        request = DummyRequest([self.user_uuid, doc_id, scheme]) +        request = DummyRequest([self.user_uuid, doc_id])          request.content = BytesIO(content)          self.resource.render_PUT(request)  | 
