mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-08 15:02:24 -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
|
@ -46,7 +46,7 @@ class FederationServerTests(unittest.FederatingHomeserverTestCase):
|
|||
|
||||
"/get_missing_events/(?P<room_id>[^/]*)/?"
|
||||
|
||||
request, channel = self.make_request(
|
||||
channel = self.make_request(
|
||||
"POST",
|
||||
"/_matrix/federation/v1/get_missing_events/%s" % (room_1,),
|
||||
query_content,
|
||||
|
@ -95,7 +95,7 @@ class StateQueryTests(unittest.FederatingHomeserverTestCase):
|
|||
room_1 = self.helper.create_room_as(u1, tok=u1_token)
|
||||
self.inject_room_member(room_1, "@user:other.example.com", "join")
|
||||
|
||||
request, channel = self.make_request(
|
||||
channel = self.make_request(
|
||||
"GET", "/_matrix/federation/v1/state/%s" % (room_1,)
|
||||
)
|
||||
self.assertEquals(200, channel.code, channel.result)
|
||||
|
@ -127,7 +127,7 @@ class StateQueryTests(unittest.FederatingHomeserverTestCase):
|
|||
|
||||
room_1 = self.helper.create_room_as(u1, tok=u1_token)
|
||||
|
||||
request, channel = self.make_request(
|
||||
channel = self.make_request(
|
||||
"GET", "/_matrix/federation/v1/state/%s" % (room_1,)
|
||||
)
|
||||
self.assertEquals(403, channel.code, channel.result)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue