mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-04 10:54:53 -04:00
Remove spurious "SynapseRequest" result from `make_request"
This was never used, so let's get rid of it.
This commit is contained in:
parent
ac2acf1524
commit
394516ad1b
59 changed files with 742 additions and 983 deletions
|
@ -201,7 +201,7 @@ class TestMauLimit(unittest.HomeserverTestCase):
|
|||
}
|
||||
)
|
||||
|
||||
request, channel = self.make_request("POST", "/register", request_data)
|
||||
channel = self.make_request("POST", "/register", request_data)
|
||||
|
||||
if channel.code != 200:
|
||||
raise HttpResponseException(
|
||||
|
@ -213,7 +213,7 @@ class TestMauLimit(unittest.HomeserverTestCase):
|
|||
return access_token
|
||||
|
||||
def do_sync_for_user(self, token):
|
||||
request, channel = self.make_request("GET", "/sync", access_token=token)
|
||||
channel = self.make_request("GET", "/sync", access_token=token)
|
||||
|
||||
if channel.code != 200:
|
||||
raise HttpResponseException(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue