diff options
author | Erik Johnston <erik@matrix.org> | 2017-06-27 15:53:45 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2017-06-27 15:53:45 +0100 |
commit | 8c23221666f1a09fdc97c2b526cb100cdbd32f60 (patch) | |
tree | 89cb4b139527f59388026987204e66b878bab931 /tests/handlers | |
parent | Make workers report to master for user ip updates (diff) | |
download | synapse-8c23221666f1a09fdc97c2b526cb100cdbd32f60.tar.xz |
Fix up
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_device.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/handlers/test_device.py b/tests/handlers/test_device.py index 2eaaa8253c..778ff2f6e9 100644 --- a/tests/handlers/test_device.py +++ b/tests/handlers/test_device.py @@ -19,7 +19,6 @@ import synapse.api.errors import synapse.handlers.device import synapse.storage -from synapse import types from tests import unittest, utils user1 = "@boris:aaa" @@ -179,6 +178,6 @@ class DeviceTestCase(unittest.TestCase): if ip is not None: yield self.store.insert_client_ip( - types.UserID.from_string(user_id), + user_id, access_token, ip, "user_agent", device_id) self.clock.advance_time(1000) |