summary refs log tree commit diff
path: root/tests/rest/client/test_account.py
diff options
context:
space:
mode:
authorH. Shay <hillerys@element.io>2023-03-16 14:49:47 -0700
committerH. Shay <hillerys@element.io>2023-03-16 14:49:47 -0700
commitad325833e237e89f88978c855f52dfabb0805691 (patch)
treeabae8f9b8a21e13b72caeff799d8ded59140f208 /tests/rest/client/test_account.py
parentrequested changes (diff)
parentRemove no-op send_command for Redis replication. (#15274) (diff)
downloadsynapse-ad325833e237e89f88978c855f52dfabb0805691.tar.xz
Merge branch 'develop' into shay/rework_module
Diffstat (limited to 'tests/rest/client/test_account.py')
-rw-r--r--tests/rest/client/test_account.py5
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],