summary refs log tree commit diff
path: root/tests/crypto
diff options
context:
space:
mode:
authorAdrian Tschira <nota@notafile.com>2018-04-15 21:46:23 +0200
committerAdrian Tschira <nota@notafile.com>2018-04-16 00:39:32 +0200
commita1a3c9660ffc1e99f656c1d39ebe57b8857b207d (patch)
tree202271009a7d5e8346a2c1994536283bbd764d07 /tests/crypto
parentMerge branch 'master' of https://github.com/matrix-org/synapse into develop (diff)
downloadsynapse-a1a3c9660ffc1e99f656c1d39ebe57b8857b207d.tar.xz
Make tests py3 compatible
This is a mixed commit that fixes various small issues

 * print parentheses
 * 01 is invalid syntax (it was octal in py2)
 * [x for i in 1, 2] is invalid syntax
 * six moves

Signed-off-by: Adrian Tschira <nota@notafile.com>
Diffstat (limited to 'tests/crypto')
-rw-r--r--tests/crypto/test_keyring.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/crypto/test_keyring.py b/tests/crypto/test_keyring.py
index d4ec02ffc2..149e443022 100644
--- a/tests/crypto/test_keyring.py
+++ b/tests/crypto/test_keyring.py
@@ -183,7 +183,7 @@ class KeyringTestCase(unittest.TestCase):
                 res_deferreds_2 = kr.verify_json_objects_for_server(
                     [("server10", json1)],
                 )
-                yield async.sleep(01)
+                yield async.sleep(1)
                 self.http_client.post_json.assert_not_called()
                 res_deferreds_2[0].addBoth(self.check_context, None)