diff options
author | Mathieu Velten <mathieuv@matrix.org> | 2023-09-04 18:13:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-04 18:13:28 +0200 |
commit | dcb27783417a1161c484525afb839233299b847f (patch) | |
tree | bc0833777c5caf4b1a35f644afdb090e05c6de3f /tests/storage | |
parent | Merge branch 'master' into develop (diff) | |
download | synapse-dcb27783417a1161c484525afb839233299b847f.tar.xz |
Add last_seen_ts to the admin users API (#16218)
Diffstat (limited to 'tests/storage')
-rw-r--r-- | tests/storage/test_registration.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/storage/test_registration.py b/tests/storage/test_registration.py index ba41459d08..95c9792d54 100644 --- a/tests/storage/test_registration.py +++ b/tests/storage/test_registration.py @@ -51,6 +51,7 @@ class RegistrationStoreTestCase(HomeserverTestCase): "locked": 0, "shadow_banned": 0, "approved": 1, + "last_seen_ts": None, }, (self.get_success(self.store.get_user_by_id(self.user_id))), ) |