diff options
author | reivilibre <38398653+reivilibre@users.noreply.github.com> | 2020-09-15 09:07:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 09:07:19 +0100 |
commit | 576bc37d318f866f11f71e34ce7190aa45b74780 (patch) | |
tree | f85170f877c61b9f5d7837ba5f227b81d5231385 /tests/handlers | |
parent | Use slots in attrs classes where possible (#8296) (diff) | |
download | synapse-576bc37d318f866f11f71e34ce7190aa45b74780.tar.xz |
Catch-up after Federation Outage (split, 4): catch-up loop (#8272)
Diffstat (limited to 'tests/handlers')
-rw-r--r-- | tests/handlers/test_typing.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/handlers/test_typing.py b/tests/handlers/test_typing.py index f306a09bfa..3fec09ea8a 100644 --- a/tests/handlers/test_typing.py +++ b/tests/handlers/test_typing.py @@ -73,6 +73,7 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): "delivered_txn", "get_received_txn_response", "set_received_txn_response", + "get_destination_last_successful_stream_ordering", "get_destination_retry_timings", "get_devices_by_remote", "maybe_store_room_on_invite", @@ -121,6 +122,10 @@ class TypingNotificationsTestCase(unittest.HomeserverTestCase): (0, []) ) + self.datastore.get_destination_last_successful_stream_ordering.return_value = make_awaitable( + None + ) + def get_received_txn_response(*args): return defer.succeed(None) |