diff options
-rw-r--r-- | tests/handlers/test_appservice.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/handlers/test_appservice.py b/tests/handlers/test_appservice.py index 42b2de0927..4dd05979dd 100644 --- a/tests/handlers/test_appservice.py +++ b/tests/handlers/test_appservice.py @@ -373,6 +373,9 @@ class ApplicationServicesHandlerSendEventsTestCase(unittest.HomeserverTestCase): "exclusive_as_user", "password", self.exclusive_as_user_device_id ) + # Ensure that the mock is reset after creating devices (and thus updating device lists) + self.send_mock.reset_mock() + @unittest.override_config( {"experimental_features": {"msc2409_to_device_messages_enabled": True}} ) |