diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2022-02-03 15:31:59 +0000 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2022-02-03 15:35:37 +0000 |
commit | d33ab609bcd817ed09336185df0318352149ce6e (patch) | |
tree | cd2d1f6266c6a7d5b1b4b13c7ad324542dec4c57 /tests | |
parent | Derive users to notify from user streams in on_new_event (diff) | |
download | synapse-d33ab609bcd817ed09336185df0318352149ce6e.tar.xz |
Remove handling of str-type user IDs down the call stack
I broke off this refactoring at _get_to_device_messages, as this PR would start to become much bigger otherwise.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/handlers/test_appservice.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/handlers/test_appservice.py b/tests/handlers/test_appservice.py index fe57ff2671..d0283e4969 100644 --- a/tests/handlers/test_appservice.py +++ b/tests/handlers/test_appservice.py @@ -22,7 +22,7 @@ import synapse.storage from synapse.appservice import ApplicationService from synapse.handlers.appservice import ApplicationServicesHandler from synapse.rest.client import login, receipts, room, sendtodevice -from synapse.types import RoomStreamToken +from synapse.types import RoomStreamToken, UserID from synapse.util.stringutils import random_string from tests import unittest @@ -280,7 +280,7 @@ class AppServiceHandlerTestCase(unittest.TestCase): ) self.handler.notify_interested_services_ephemeral( - "receipt_key", 580, ["@fakerecipient:example.com"] + "receipt_key", 580, [UserID.from_string("@fakerecipient:example.com")] ) self.mock_scheduler.enqueue_for_appservice.assert_called_once_with( interested_service, ephemeral=[event] @@ -310,7 +310,7 @@ class AppServiceHandlerTestCase(unittest.TestCase): ) self.handler.notify_interested_services_ephemeral( - "receipt_key", 580, ["@fakerecipient:example.com"] + "receipt_key", 580, [UserID.from_string("@fakerecipient:example.com")] ) # This method will be called, but with an empty list of events self.mock_scheduler.enqueue_for_appservice.assert_called_once_with( |