summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2018-03-01 10:54:37 +0000
committerErik Johnston <erik@matrix.org>2018-03-01 14:36:50 +0000
commit784f036306a020fcde495887c2881209b913b9b8 (patch)
tree87eb76c9a058034dab5c82baa1b01a59152bc33f /tests
parentMerge pull request #2920 from matrix-org/erikj/retry_send_event (diff)
downloadsynapse-784f036306a020fcde495887c2881209b913b9b8.tar.xz
Move RoomMemberHandler out of Handlers
Diffstat (limited to 'tests')
-rw-r--r--tests/rest/client/v1/test_typing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/v1/test_typing.py b/tests/rest/client/v1/test_typing.py
index a269e6f56e..e46534cd35 100644
--- a/tests/rest/client/v1/test_typing.py
+++ b/tests/rest/client/v1/test_typing.py
@@ -95,7 +95,7 @@ class RoomTypingTestCase(RestTestCase):
                 else:
                     if remotedomains is not None:
                         remotedomains.add(member.domain)
-        hs.get_handlers().room_member_handler.fetch_room_distributions_into = (
+        hs.get_room_member_handler().fetch_room_distributions_into = (
             fetch_room_distributions_into
         )