summary refs log tree commit diff
path: root/tests/rest
diff options
context:
space:
mode:
authorMark Haines <mark.haines@matrix.org>2016-05-17 15:58:46 +0100
committerMark Haines <mark.haines@matrix.org>2016-05-17 15:58:46 +0100
commit0cb441fedd77b42f307745a441b804fee6386cb5 (patch)
tree5b240661fd780a583871812dd606491c1b38683f /tests/rest
parentMerge pull request #791 from matrix-org/markjh/app_service_config (diff)
downloadsynapse-0cb441fedd77b42f307745a441b804fee6386cb5.tar.xz
Move typing handler out of the Handlers object
Diffstat (limited to 'tests/rest')
-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 d0037a53ef..467f253ef6 100644
--- a/tests/rest/client/v1/test_typing.py
+++ b/tests/rest/client/v1/test_typing.py
@@ -106,7 +106,7 @@ class RoomTypingTestCase(RestTestCase):
         yield self.join(self.room_id, user="@jim:red")
 
     def tearDown(self):
-        self.hs.get_handlers().typing_notification_handler.tearDown()
+        self.hs.get_typing_handler().tearDown()
 
     @defer.inlineCallbacks
     def test_set_typing(self):