mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-01-12 21:49:27 -05:00
Fix terms UI auth test
This commit is contained in:
parent
88c5ffec33
commit
dba84fa69c
@ -181,7 +181,7 @@ class RegisterRestServletTestCase(unittest.TestCase):
|
|||||||
self.hs.config.user_consent_version = "1.0"
|
self.hs.config.user_consent_version = "1.0"
|
||||||
|
|
||||||
# Do a UI auth request
|
# Do a UI auth request
|
||||||
reqest, channel = make_request(b"POST", self.url, b"{}")
|
request, channel = make_request(b"POST", self.url, b"{}")
|
||||||
render(request, self.resource, self.clock)
|
render(request, self.resource, self.clock)
|
||||||
|
|
||||||
self.assertEquals(channel.result["code"], b"401", channel.result)
|
self.assertEquals(channel.result["code"], b"401", channel.result)
|
||||||
@ -220,7 +220,10 @@ class RegisterRestServletTestCase(unittest.TestCase):
|
|||||||
"username": "kermit",
|
"username": "kermit",
|
||||||
"password": "monkey",
|
"password": "monkey",
|
||||||
"device_id": device_id,
|
"device_id": device_id,
|
||||||
|
"auth": {
|
||||||
"session": channel.json_body["session"],
|
"session": channel.json_body["session"],
|
||||||
|
"type": "m.login.terms",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
self.registration_handler.check_username = Mock(return_value=True)
|
self.registration_handler.check_username = Mock(return_value=True)
|
||||||
|
Loading…
Reference in New Issue
Block a user