diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-01-12 22:30:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-12 16:30:15 -0500 |
commit | 7a2e9b549defe3f55531711a863183a33e7af83c (patch) | |
tree | 1ceeb3a73fd7a8cfa16fca79632bbb0ce554b0bc /tests/rest/client/v1/test_rooms.py | |
parent | UI Auth via SSO: redirect the user to an appropriate SSO. (#9081) (diff) | |
download | synapse-7a2e9b549defe3f55531711a863183a33e7af83c.tar.xz |
Remove user's avatar URL and displayname when deactivated. (#8932)
This only applies if the user's data is to be erased.
Diffstat (limited to 'tests/rest/client/v1/test_rooms.py')
-rw-r--r-- | tests/rest/client/v1/test_rooms.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/rest/client/v1/test_rooms.py b/tests/rest/client/v1/test_rooms.py index 6105eac47c..d4e3165436 100644 --- a/tests/rest/client/v1/test_rooms.py +++ b/tests/rest/client/v1/test_rooms.py @@ -29,7 +29,7 @@ from synapse.handlers.pagination import PurgeStatus from synapse.rest import admin from synapse.rest.client.v1 import directory, login, profile, room from synapse.rest.client.v2_alpha import account -from synapse.types import JsonDict, RoomAlias, UserID +from synapse.types import JsonDict, RoomAlias, UserID, create_requester from synapse.util.stringutils import random_string from tests import unittest @@ -1687,7 +1687,9 @@ class ContextTestCase(unittest.HomeserverTestCase): deactivate_account_handler = self.hs.get_deactivate_account_handler() self.get_success( - deactivate_account_handler.deactivate_account(self.user_id, erase_data=True) + deactivate_account_handler.deactivate_account( + self.user_id, True, create_requester(self.user_id) + ) ) # Invite another user in the room. This is needed because messages will be |