diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-02-19 11:19:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-19 11:19:11 +0000 |
commit | 2fb7794e60783b09aaea8e598cd1fa37b1fc5de1 (patch) | |
tree | 40dabbe9c153d39a440d4b0c71728f23c25fb88f /tests/handlers/test_typing.py | |
parent | Merge pull request #6940 from matrix-org/babolivier/federate.md (diff) | |
parent | changelog (diff) | |
download | synapse-2fb7794e60783b09aaea8e598cd1fa37b1fc5de1.tar.xz |
Merge pull request #6949 from matrix-org/rav/list_room_aliases_peekable
Make room alias lists peekable
Diffstat (limited to 'tests/handlers/test_typing.py')
-rw-r--r-- | tests/handlers/test_typing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py index 2767b0497a..140cc0a3c2 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py @@ -122,11 +122,11 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): self.room_members = [] - def check_joined_room(room_id, user_id): + def check_user_in_room(room_id, user_id): if user_id not in [u.to_string() for u in self.room_members]: raise AuthError(401, "User is not in the room") - hs.get_auth().check_joined_room = check_joined_room + hs.get_auth().check_user_in_room = check_user_in_room def get_joined_hosts_for_room(room_id): return set(member.domain for member in self.room_members) |