pull/5726/head
Hubert Chathi 2019-09-05 17:03:14 -04:00
parent c8dc740a94
commit e47af0f086
1 changed files with 3 additions and 1 deletions

View File

@ -265,7 +265,9 @@ class E2eKeysHandlerTestCase(unittest.TestCase):
device_key_1["signatures"][local_user]["ed25519:abc"] = "base64+signature"
device_key_2["signatures"][local_user]["ed25519:def"] = "base64+signature"
devices = yield self.handler.query_devices({"device_keys": {local_user: []}}, 0)
devices = yield self.handler.query_devices(
{"device_keys": {local_user: []}}, 0, 0
)
del devices["device_keys"][local_user]["abc"]["unsigned"]
del devices["device_keys"][local_user]["def"]["unsigned"]
self.assertDictEqual(devices["device_keys"][local_user]["abc"], device_key_1)