diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2022-05-26 09:04:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 09:04:34 -0400 |
commit | 49f06866e4db2e19467a3733b2909ba397da265e (patch) | |
tree | 549f907d582a0bda1cd5f1c6139a1db4561e013b /tests/appservice | |
parent | Bump pyjwt from 2.3.0 to 2.4.0 (#12865) (diff) | |
download | synapse-49f06866e4db2e19467a3733b2909ba397da265e.tar.xz |
Remove backing code for groups/communities (#12558)
Including handlers, configuration code, appservice support, and the GroupID construct.
Diffstat (limited to 'tests/appservice')
-rw-r--r-- | tests/appservice/test_appservice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/appservice/test_appservice.py b/tests/appservice/test_appservice.py index edc584d0cf..7135362f76 100644 --- a/tests/appservice/test_appservice.py +++ b/tests/appservice/test_appservice.py @@ -23,7 +23,7 @@ from tests.test_utils import simple_async_mock def _regex(regex: str, exclusive: bool = True) -> Namespace: - return Namespace(exclusive, None, re.compile(regex)) + return Namespace(exclusive, re.compile(regex)) class ApplicationServiceTestCase(unittest.TestCase): |