mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-07-23 06:20:35 -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
|
@ -664,7 +664,7 @@ class ThreepidEmailRestTestCase(unittest.HomeserverTestCase):
|
|||
|
||||
def test_add_email_if_disabled(self):
|
||||
"""Test adding email to profile when doing so is disallowed"""
|
||||
self.hs.config.enable_3pid_changes = False
|
||||
self.hs.config.registration.enable_3pid_changes = False
|
||||
|
||||
client_secret = "foobar"
|
||||
session_id = self._request_token(self.email, client_secret)
|
||||
|
@ -734,7 +734,7 @@ class ThreepidEmailRestTestCase(unittest.HomeserverTestCase):
|
|||
|
||||
def test_delete_email_if_disabled(self):
|
||||
"""Test deleting an email from profile when disallowed"""
|
||||
self.hs.config.enable_3pid_changes = False
|
||||
self.hs.config.registration.enable_3pid_changes = False
|
||||
|
||||
# Add a threepid
|
||||
self.get_success(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue