diff options
author | drebs <drebs@leap.se> | 2012-12-04 16:26:11 -0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2012-12-04 16:26:11 -0200 |
commit | dedbd9b349c8c9dca132b2cf1463c73141e75cba (patch) | |
tree | e5d5c2a2035e55a212aec62128f54284206505eb /tests/__init__.py | |
parent | 7e752d66e5c0d11b6504f7b1efef7971f368c448 (diff) |
Correct test error message
Diffstat (limited to 'tests/__init__.py')
-rw-r--r-- | tests/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/__init__.py b/tests/__init__.py index 61eb3f35..0d7ae2b4 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -40,7 +40,8 @@ class EncryptedSyncTestCase(unittest.TestCase): default_key = KEY_FINGERPRINT) res1 = doc1.get_json() res2 = doc2.get_json() - self.assertEqual(res1, res2, 'incorrect document encoding') + self.assertEqual(res1, res2, 'incorrect document encryption') + # Key material for testing KEY_FINGERPRINT = "E36E738D69173C13D709E44F2F455E2824D18DDF" |