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 | |
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')
-rw-r--r-- | tests/api/test_auth.py | 2 | ||||
-rw-r--r-- | tests/api/test_ratelimiting.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/tests/api/test_auth.py b/tests/api/test_auth.py index d547df8a64..bc75ddd3e9 100644 --- a/tests/api/test_auth.py +++ b/tests/api/test_auth.py @@ -404,7 +404,6 @@ class AuthTestCase(unittest.HomeserverTestCase): appservice = ApplicationService( "abcd", - self.hs.config.server.server_name, id="1234", namespaces={ "users": [{"regex": "@_appservice.*:sender", "exclusive": True}] @@ -433,7 +432,6 @@ class AuthTestCase(unittest.HomeserverTestCase): appservice = ApplicationService( "abcd", - self.hs.config.server.server_name, id="1234", namespaces={ "users": [{"regex": "@_appservice.*:sender", "exclusive": True}] 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", |