mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Fix registration test
* Set allow_guest_access = True, since we rely on it * config doesn't have a `hostname` attribute; it is `server_name`
This commit is contained in:
parent
8c1774e821
commit
45bb54a6c6
@ -20,6 +20,7 @@ class RegisterRestServletTestCase(unittest.HomeserverTestCase):
|
|||||||
self.hs.config.registrations_require_3pid = []
|
self.hs.config.registrations_require_3pid = []
|
||||||
self.hs.config.auto_join_rooms = []
|
self.hs.config.auto_join_rooms = []
|
||||||
self.hs.config.enable_registration_captcha = False
|
self.hs.config.enable_registration_captcha = False
|
||||||
|
self.hs.config.allow_guest_access = True
|
||||||
|
|
||||||
return self.hs
|
return self.hs
|
||||||
|
|
||||||
@ -28,7 +29,7 @@ class RegisterRestServletTestCase(unittest.HomeserverTestCase):
|
|||||||
as_token = "i_am_an_app_service"
|
as_token = "i_am_an_app_service"
|
||||||
|
|
||||||
appservice = ApplicationService(
|
appservice = ApplicationService(
|
||||||
as_token, self.hs.config.hostname,
|
as_token, self.hs.config.server_name,
|
||||||
id="1234",
|
id="1234",
|
||||||
namespaces={
|
namespaces={
|
||||||
"users": [{"regex": r"@as_user.*", "exclusive": True}],
|
"users": [{"regex": r"@as_user.*", "exclusive": True}],
|
||||||
|
Loading…
Reference in New Issue
Block a user