diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2023-01-25 20:38:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-25 14:38:20 -0500 |
commit | 836c592f15b1511c4b367f2778c0e3d1a89dba09 (patch) | |
tree | fa78d1ed783090e1d010b0fbd49fbd9ff6231f7c /tests/rest | |
parent | 1.76.0rc1 (diff) | |
download | synapse-836c592f15b1511c4b367f2778c0e3d1a89dba09.tar.xz |
Fix type hints in knocking tests. (#14887)
Diffstat (limited to 'tests/rest')
-rw-r--r-- | tests/rest/client/test_sync.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/rest/client/test_sync.py b/tests/rest/client/test_sync.py index c9afa0f3dd..b9047194dd 100644 --- a/tests/rest/client/test_sync.py +++ b/tests/rest/client/test_sync.py @@ -294,9 +294,7 @@ class SyncTypingTests(unittest.HomeserverTestCase): self.make_request("GET", sync_url % (access_token, next_batch)) -class SyncKnockTestCase( - unittest.HomeserverTestCase, KnockingStrippedStateEventHelperMixin -): +class SyncKnockTestCase(KnockingStrippedStateEventHelperMixin): servlets = [ synapse.rest.admin.register_servlets, login.register_servlets, |