diff options
author | Erik Johnston <erik@matrix.org> | 2022-04-26 17:07:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-26 17:07:21 +0100 |
commit | f59e3f4c900b3961e2b96592a67cd2f0821b00db (patch) | |
tree | 06407ee7ebadca9d531a01085c3696a95182f2db /tests | |
parent | Comment out dodgy log-kv (#12554) (diff) | |
download | synapse-f59e3f4c900b3961e2b96592a67cd2f0821b00db.tar.xz |
Mark remote device list updates as already handled (#12557)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/storage/test_devices.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_devices.py b/tests/storage/test_devices.py index ccc3893869..bbf079b25b 100644 --- a/tests/storage/test_devices.py +++ b/tests/storage/test_devices.py @@ -29,7 +29,7 @@ class DeviceStoreTestCase(HomeserverTestCase): for device_id in device_ids: stream_id = self.get_success( self.store.add_device_change_to_streams( - "user_id", [device_id], ["!some:room"] + user_id, [device_id], ["!some:room"] ) ) |