mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-09 16:12:13 -04:00
Use direct references for configuration variables (part 7). (#10959)
This commit is contained in:
parent
a071144a5c
commit
a0f48ee89d
23 changed files with 83 additions and 68 deletions
|
@ -59,7 +59,7 @@ class UserRegisterTestCase(unittest.HomeserverTestCase):
|
|||
|
||||
self.hs = self.setup_test_homeserver()
|
||||
|
||||
self.hs.config.registration_shared_secret = "shared"
|
||||
self.hs.config.registration.registration_shared_secret = "shared"
|
||||
|
||||
self.hs.get_media_repository = Mock()
|
||||
self.hs.get_deactivate_account_handler = Mock()
|
||||
|
@ -71,7 +71,7 @@ class UserRegisterTestCase(unittest.HomeserverTestCase):
|
|||
If there is no shared secret, registration through this method will be
|
||||
prevented.
|
||||
"""
|
||||
self.hs.config.registration_shared_secret = None
|
||||
self.hs.config.registration.registration_shared_secret = None
|
||||
|
||||
channel = self.make_request("POST", self.url, b"{}")
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue