diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2023-03-16 10:35:31 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 10:35:31 +0000 |
commit | 4953cd71dfbb1925dc4a477efd2ed48c2dfd70d6 (patch) | |
tree | f1e17b835782865317d04e63b9b0f398d629f7c4 /tests | |
parent | Preparatory work to fix the user directory assuming that any remote membershi... (diff) | |
download | synapse-4953cd71dfbb1925dc4a477efd2ed48c2dfd70d6.tar.xz |
Move Account Validity callbacks to a dedicated file (#15237)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/client/test_account.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/rest/client/test_account.py b/tests/rest/client/test_account.py index 2b05dffc7d..7f675c44a2 100644 --- a/tests/rest/client/test_account.py +++ b/tests/rest/client/test_account.py @@ -1249,9 +1249,8 @@ class AccountStatusTestCase(unittest.HomeserverTestCase): # account status will fail. return UserID.from_string(user_id).localpart == "someuser" - self.hs.get_account_validity_handler()._is_user_expired_callbacks.append( - is_expired - ) + account_validity_callbacks = self.hs.get_module_api_callbacks().account_validity + account_validity_callbacks.is_user_expired_callbacks.append(is_expired) self._test_status( users=[user], |