summaryrefslogtreecommitdiff
path: root/src/leap/soledad/tests/test_crypto.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/leap/soledad/tests/test_crypto.py')
-rw-r--r--src/leap/soledad/tests/test_crypto.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/leap/soledad/tests/test_crypto.py b/src/leap/soledad/tests/test_crypto.py
index 6804723a..9a219bd0 100644
--- a/src/leap/soledad/tests/test_crypto.py
+++ b/src/leap/soledad/tests/test_crypto.py
@@ -75,7 +75,8 @@ class EncryptedSyncTestCase(BaseSoledadTest):
# encrypt doc
doc1.set_json(encrypt_doc(self._soledad._crypto, doc1))
# assert content is different and includes keys
- self.assertNotEqual(simpledoc, doc1.content,
+ self.assertNotEqual(
+ simpledoc, doc1.content,
'incorrect document encryption')
self.assertTrue(ENC_JSON_KEY in doc1.content)
self.assertTrue(ENC_SCHEME_KEY in doc1.content)
@@ -84,7 +85,6 @@ class EncryptedSyncTestCase(BaseSoledadTest):
self.assertEqual(
simpledoc, doc1.content, 'incorrect document encryption')
-
def test_encrypt_sym(self):
"""
Test for successful symmetric encryption.