diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-06-01 09:41:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-01 09:41:25 -0400 |
commit | 7bc08f320147a1d80371eb13258328c88073fad0 (patch) | |
tree | 1f22e49297c6c5ff79d8845c6a81538e13e6b13b /tests/api/test_ratelimiting.py | |
parent | Remove direct refeferences to PyNaCl (use signedjson instead). (#12902) (diff) | |
download | synapse-7bc08f320147a1d80371eb13258328c88073fad0.tar.xz |
Remove remaining bits of groups code. (#12936)
* Update worker docs to remove group endpoints. * Removes an unused parameter to `ApplicationService`. * Break dependency between media repo and groups. * Avoid copying `m.room.related_groups` state events during room upgrades.
Diffstat (limited to 'tests/api/test_ratelimiting.py')
-rw-r--r-- | tests/api/test_ratelimiting.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/api/test_ratelimiting.py b/tests/api/test_ratelimiting.py index 483d5463ad..f661a9ff8e 100644 --- a/tests/api/test_ratelimiting.py +++ b/tests/api/test_ratelimiting.py @@ -31,7 +31,6 @@ class TestRatelimiter(unittest.HomeserverTestCase): def test_allowed_appservice_ratelimited_via_can_requester_do_action(self): appservice = ApplicationService( None, - "example.com", id="foo", rate_limited=True, sender="@as:example.com", @@ -62,7 +61,6 @@ class TestRatelimiter(unittest.HomeserverTestCase): def test_allowed_appservice_via_can_requester_do_action(self): appservice = ApplicationService( None, - "example.com", id="foo", rate_limited=False, sender="@as:example.com", |