summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2019-10-30 11:43:51 +0100
committerGitHub <noreply@github.com>2019-10-30 11:43:51 +0100
commitb4465564cc89c154cf665b9de39a2f38f87ef41c (patch)
treebbe0967729ea48a5d962b157c6e762c83295b054 /tests
parentFix CI for synapse_port_db (#6276) (diff)
parentDon't return coroutines (diff)
downloadsynapse-b4465564cc89c154cf665b9de39a2f38f87ef41c.tar.xz
Merge pull request #6279 from matrix-org/erikj/federation_server_async_await
Port federation_server to async/await
Diffstat (limited to 'tests')
-rw-r--r--tests/handlers/test_typing.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py

index 67f1013051..f360c8e965 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py
@@ -144,6 +144,9 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): self.datastore.get_to_device_stream_token = lambda: 0 self.datastore.get_new_device_msgs_for_remote = lambda *args, **kargs: ([], 0) self.datastore.delete_device_msgs_for_remote = lambda *args, **kargs: None + self.datastore.set_received_txn_response = lambda *args, **kwargs: defer.succeed( + None + ) def test_started_typing_local(self): self.room_members = [U_APPLE, U_BANANA]