diff options
author | Erik Johnston <erik@matrix.org> | 2016-11-23 15:14:24 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-11-23 15:14:24 +0000 |
commit | feec71826523deb63ca6b43cdcecc8edf8710775 (patch) | |
tree | 22e17d6e0fca9a1ad4055198dcb0488cb3084623 /tests | |
parent | Fix tests (diff) | |
download | synapse-feec71826523deb63ca6b43cdcecc8edf8710775.tar.xz |
Shuffle receipt handler around so that worker apps don't need to load it
Diffstat (limited to 'tests')
-rw-r--r-- | tests/replication/test_resource.py | 2 |
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 |