summary refs log tree commit diff
path: root/tests/replication/test_resource.py
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-05-17 16:06:17 +0100
committerMark Haines <mjark@negativecurvature.net>2016-05-17 16:06:17 +0100
commitee660c6b9bba1e9eacea9b0a4419934bb80a502e (patch)
tree5b240661fd780a583871812dd606491c1b38683f /tests/replication/test_resource.py
parentMerge pull request #791 from matrix-org/markjh/app_service_config (diff)
parentMove typing handler out of the Handlers object (diff)
downloadsynapse-ee660c6b9bba1e9eacea9b0a4419934bb80a502e.tar.xz
Merge pull request #792 from matrix-org/markjh/liberate_typing_handler
Move typing handler out of the Handlers object
Diffstat (limited to 'tests/replication/test_resource.py')
-rw-r--r--tests/replication/test_resource.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/replication/test_resource.py b/tests/replication/test_resource.py
index 1258aaacb1..842e3d29d7 100644
--- a/tests/replication/test_resource.py
+++ b/tests/replication/test_resource.py
@@ -93,7 +93,7 @@ class ReplicationResourceCase(unittest.TestCase):
     def test_typing(self):
         room_id = yield self.create_room()
         get = self.get(typing="-1")
-        yield self.hs.get_handlers().typing_notification_handler.started_typing(
+        yield self.hs.get_typing_handler().started_typing(
             self.user, self.user, room_id, timeout=2
         )
         code, body = yield get