summary refs log tree commit diff
path: root/tests/replication/test_resource.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2016-11-23 15:14:24 +0000
committerErik Johnston <erik@matrix.org>2016-11-23 15:14:24 +0000
commitfeec71826523deb63ca6b43cdcecc8edf8710775 (patch)
tree22e17d6e0fca9a1ad4055198dcb0488cb3084623 /tests/replication/test_resource.py
parentFix tests (diff)
downloadsynapse-feec71826523deb63ca6b43cdcecc8edf8710775.tar.xz
Shuffle receipt handler around so that worker apps don't need to load it
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 f406934a62..93b9fad012 100644
--- a/tests/replication/test_resource.py
+++ b/tests/replication/test_resource.py
@@ -103,7 +103,7 @@ class ReplicationResourceCase(unittest.TestCase):
         room_id = yield self.create_room()
         event_id = yield self.send_text_message(room_id, "Hello, World")
         get = self.get(receipts="-1")
-        yield self.hs.get_handlers().receipts_handler.received_client_receipt(
+        yield self.hs.get_receipts_handler().received_client_receipt(
             room_id, "m.read", self.user_id, event_id
         )
         code, body = yield get