diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2022-02-28 18:47:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 17:47:37 +0000 |
commit | 1901cb1d4a8b7d9af64493fbd336e9aa2561c20c (patch) | |
tree | 60ac88ede37911a2cb92de0c70b55710fd52bd80 /tests/rest/client/test_sendtodevice.py | |
parent | Fix `PushRuleEvaluator` and `Filter` to work on frozendicts (#12100) (diff) | |
download | synapse-1901cb1d4a8b7d9af64493fbd336e9aa2561c20c.tar.xz |
Add type hints to `tests/rest/client` (#12084)
Diffstat (limited to 'tests/rest/client/test_sendtodevice.py')
-rw-r--r-- | tests/rest/client/test_sendtodevice.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/rest/client/test_sendtodevice.py b/tests/rest/client/test_sendtodevice.py index e2ed14457f..c3942889e1 100644 --- a/tests/rest/client/test_sendtodevice.py +++ b/tests/rest/client/test_sendtodevice.py @@ -26,7 +26,7 @@ class SendToDeviceTestCase(HomeserverTestCase): sync.register_servlets, ] - def test_user_to_user(self): + def test_user_to_user(self) -> None: """A to-device message from one user to another should get delivered""" user1 = self.register_user("u1", "pass") @@ -73,7 +73,7 @@ class SendToDeviceTestCase(HomeserverTestCase): self.assertEqual(channel.json_body.get("to_device", {}).get("events", []), []) @override_config({"rc_key_requests": {"per_second": 10, "burst_count": 2}}) - def test_local_room_key_request(self): + def test_local_room_key_request(self) -> None: """m.room_key_request has special-casing; test from local user""" user1 = self.register_user("u1", "pass") user1_tok = self.login("u1", "pass", "d1") @@ -128,7 +128,7 @@ class SendToDeviceTestCase(HomeserverTestCase): ) @override_config({"rc_key_requests": {"per_second": 10, "burst_count": 2}}) - def test_remote_room_key_request(self): + def test_remote_room_key_request(self) -> None: """m.room_key_request has special-casing; test from remote user""" user2 = self.register_user("u2", "pass") user2_tok = self.login("u2", "pass", "d2") @@ -199,7 +199,7 @@ class SendToDeviceTestCase(HomeserverTestCase): }, ) - def test_limited_sync(self): + def test_limited_sync(self) -> None: """If a limited sync for to-devices happens the next /sync should respond immediately.""" self.register_user("u1", "pass") |