mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-12-15 10:57:47 -05:00
Add reactor to SynapseRequest and fix up types. (#10868)
This commit is contained in:
parent
fa74536384
commit
50022cff96
24 changed files with 123 additions and 82 deletions
|
|
@ -312,7 +312,7 @@ class PasswordResetTestCase(unittest.HomeserverTestCase):
|
|||
# Load the password reset confirmation page
|
||||
channel = make_request(
|
||||
self.reactor,
|
||||
FakeSite(self.submit_token_resource),
|
||||
FakeSite(self.submit_token_resource, self.reactor),
|
||||
"GET",
|
||||
path,
|
||||
shorthand=False,
|
||||
|
|
@ -326,7 +326,7 @@ class PasswordResetTestCase(unittest.HomeserverTestCase):
|
|||
# Confirm the password reset
|
||||
channel = make_request(
|
||||
self.reactor,
|
||||
FakeSite(self.submit_token_resource),
|
||||
FakeSite(self.submit_token_resource, self.reactor),
|
||||
"POST",
|
||||
path,
|
||||
content=b"",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue