diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2022-02-28 19:59:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-28 18:59:00 +0000 |
commit | 952efd0bca967bc2fcabe5c3f1f58e14ddc41686 (patch) | |
tree | c4f7db85a4d593e3ee10c2964149b249cf51a810 /tests/rest/client/test_groups.py | |
parent | Remove the unstable `/spaces` endpoint. (#12073) (diff) | |
download | synapse-952efd0bca967bc2fcabe5c3f1f58e14ddc41686.tar.xz |
Add type hints to `tests/rest/client` (#12094)
* Add type hints to `tests/rest/client` * update `mypy.ini` * newsfile * add `test_register.py`
Diffstat (limited to 'tests/rest/client/test_groups.py')
-rw-r--r-- | tests/rest/client/test_groups.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rest/client/test_groups.py b/tests/rest/client/test_groups.py index c99f54cf4f..e067cf825c 100644 --- a/tests/rest/client/test_groups.py +++ b/tests/rest/client/test_groups.py @@ -25,7 +25,7 @@ class GroupsTestCase(unittest.HomeserverTestCase): servlets = [room.register_servlets, groups.register_servlets] @override_config({"enable_group_creation": True}) - def test_rooms_limited_by_visibility(self): + def test_rooms_limited_by_visibility(self) -> None: group_id = "+spqr:test" # Alice creates a group |