diff options
author | David Robertson <davidr@element.io> | 2022-11-29 17:48:48 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 17:48:48 +0000 |
commit | c29e2c630624beb0b5557aa0f7ccdcedbe62def1 (patch) | |
tree | 4103b9896363c8b433a0c95e88ad086422105f7d /tests | |
parent | Update changelog (diff) | |
download | synapse-c29e2c630624beb0b5557aa0f7ccdcedbe62def1.tar.xz |
Revert "POC delete stale non-e2e devices for users (#14038)" (#14582)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_device.py | 2 | ||||
-rw-r--r-- | tests/storage/test_client_ips.py | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/tests/handlers/test_device.py b/tests/handlers/test_device.py index a456bffd63..ce7525e29c 100644 --- a/tests/handlers/test_device.py +++ b/tests/handlers/test_device.py @@ -115,7 +115,7 @@ class DeviceTestCase(unittest.HomeserverTestCase): "device_id": "xyz", "display_name": "display 0", "last_seen_ip": None, - "last_seen_ts": 1000000, + "last_seen_ts": None, }, device_map["xyz"], ) diff --git a/tests/storage/test_client_ips.py b/tests/storage/test_client_ips.py index a9af1babed..49ad3c1324 100644 --- a/tests/storage/test_client_ips.py +++ b/tests/storage/test_client_ips.py @@ -169,8 +169,6 @@ class ClientIpStoreTestCase(unittest.HomeserverTestCase): ) ) - last_seen = self.clock.time_msec() - if after_persisting: # Trigger the storage loop self.reactor.advance(10) @@ -191,7 +189,7 @@ class ClientIpStoreTestCase(unittest.HomeserverTestCase): "device_id": device_id, "ip": None, "user_agent": None, - "last_seen": last_seen, + "last_seen": None, }, ], ) |