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/test_mau.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/test_mau.py')
-rw-r--r-- | tests/test_mau.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/test_mau.py b/tests/test_mau.py index 5bbc361aa2..f14fcb7db9 100644 --- a/tests/test_mau.py +++ b/tests/test_mau.py @@ -105,7 +105,6 @@ class TestMauLimit(unittest.HomeserverTestCase): self.store.services_cache.append( ApplicationService( token=as_token, - hostname=self.hs.hostname, id="SomeASID", sender="@as_sender:test", namespaces={"users": [{"regex": "@as_*", "exclusive": True}]}, @@ -251,7 +250,6 @@ class TestMauLimit(unittest.HomeserverTestCase): self.store.services_cache.append( ApplicationService( token=as_token_1, - hostname=self.hs.hostname, id="SomeASID", sender="@as_sender_1:test", namespaces={"users": [{"regex": "@as_1.*", "exclusive": True}]}, @@ -262,7 +260,6 @@ class TestMauLimit(unittest.HomeserverTestCase): self.store.services_cache.append( ApplicationService( token=as_token_2, - hostname=self.hs.hostname, id="AnotherASID", sender="@as_sender_2:test", namespaces={"users": [{"regex": "@as_2.*", "exclusive": True}]}, |