diff options
author | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2021-12-13 16:54:54 +0000 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2021-12-13 16:54:54 +0000 |
commit | 5d8949419850d13c9161d3bde209374803e9399b (patch) | |
tree | d6f0ef10eb0b06c918adbdee969a5981dd0a855b | |
parent | Find interesting users for the AS when sending OTKs and FBKs (diff) | |
download | synapse-5d8949419850d13c9161d3bde209374803e9399b.tar.xz |
Fix two tests
-rw-r--r-- | tests/handlers/test_appservice.py | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/handlers/test_appservice.py b/tests/handlers/test_appservice.py index e4ec149273..a59f37da69 100644 --- a/tests/handlers/test_appservice.py +++ b/tests/handlers/test_appservice.py @@ -426,7 +426,14 @@ class ApplicationServicesHandlerSendEventsTestCase(unittest.HomeserverTestCase): # # The uninterested application service should not have been notified at all. self.send_mock.assert_called_once() - service, _events, _ephemeral, to_device_messages = self.send_mock.call_args[0] + ( + service, + _events, + _ephemeral, + to_device_messages, + _otks, + _fbks, + ) = self.send_mock.call_args[0] # Assert that this was the same to-device message that local_user sent self.assertEqual(service, interested_appservice) @@ -537,7 +544,7 @@ class ApplicationServicesHandlerSendEventsTestCase(unittest.HomeserverTestCase): service_id_to_message_count: Dict[str, int] = {} for call in self.send_mock.call_args_list: - service, _events, _ephemeral, to_device_messages = call[0] + service, _events, _ephemeral, to_device_messages, _otks, _fbks = call[0] # Check that this was made to an interested service self.assertIn(service, interested_appservices) |