diff options
author | Richard van der Hoff <richard@matrix.org> | 2020-11-15 22:49:21 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-11-16 18:24:08 +0000 |
commit | be8fa65d0baddcc0a64954e21d38a854e4ee00d7 (patch) | |
tree | aada7d9ac2dac6555cf0cc4513b605d0edab5d5d /tests/rest/client/v2_alpha | |
parent | Make `make_request` actually render the request (diff) | |
download | synapse-be8fa65d0baddcc0a64954e21d38a854e4ee00d7.tar.xz |
Remove redundant calls to `render()`
Diffstat (limited to 'tests/rest/client/v2_alpha')
-rw-r--r-- | tests/rest/client/v2_alpha/test_sync.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/rest/client/v2_alpha/test_sync.py b/tests/rest/client/v2_alpha/test_sync.py index a31e44c97e..f74d611943 100644 --- a/tests/rest/client/v2_alpha/test_sync.py +++ b/tests/rest/client/v2_alpha/test_sync.py @@ -320,10 +320,8 @@ class SyncTypingTests(unittest.HomeserverTestCase): typing._reset() # Now it SHOULD fail as it never completes! - request, channel = self.make_request( - "GET", sync_url % (access_token, next_batch) - ) - self.assertRaises(TimedOutException, self.render, request) + with self.assertRaises(TimedOutException): + self.make_request("GET", sync_url % (access_token, next_batch)) class UnreadMessagesTestCase(unittest.HomeserverTestCase): |