diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-02-17 21:19:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 15:19:23 -0500 |
commit | c8d9383cfb0985a99bf10756ea2dcb0b6329859d (patch) | |
tree | 9941bb1acc72e621b361c0609b5c93d0d2a32c28 /tests/storage/test_registration.py | |
parent | Remove dead notify_for_states presence method (#9408) (diff) | |
download | synapse-c8d9383cfb0985a99bf10756ea2dcb0b6329859d.tar.xz |
Add the shadow-banning status to the display user admin API. (#9400)
Diffstat (limited to 'tests/storage/test_registration.py')
-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 abbaed7cdc..4eb41c46e8 100644 --- a/tests/storage/test_registration.py +++ b/tests/storage/test_registration.py @@ -52,6 +52,7 @@ class RegistrationStoreTestCase(unittest.TestCase): "creation_ts": 1000, "user_type": None, "deactivated": 0, + "shadow_banned": 0, }, (yield defer.ensureDeferred(self.store.get_user_by_id(self.user_id))), ) |