diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-04-12 10:20:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 10:20:46 -0400 |
commit | 9535fd0f9c4227be14452271e163c2ddbc3a0a19 (patch) | |
tree | bf8c1b7dccd5f0cfc828fceae816a8f351b185fb /tests | |
parent | Resync state after partial-state join (#12394) (diff) | |
download | synapse-9535fd0f9c4227be14452271e163c2ddbc3a0a19.tar.xz |
Disable groups/communities by default. (#12344)
This disables the endpoints (and sync response fields) for groups/communities by default.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/rest/admin/test_admin.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/rest/admin/test_admin.py b/tests/rest/admin/test_admin.py index 849d00ab4d..40571b753a 100644 --- a/tests/rest/admin/test_admin.py +++ b/tests/rest/admin/test_admin.py @@ -63,6 +63,7 @@ class DeleteGroupTestCase(unittest.HomeserverTestCase): self.other_user = self.register_user("user", "pass") self.other_user_token = self.login("user", "pass") + @unittest.override_config({"experimental_features": {"groups_enabled": True}}) def test_delete_group(self) -> None: # Create a new group channel = self.make_request( |