summary refs log tree commit diff
path: root/tests/handlers
diff options
context:
space:
mode:
authordklimpel <5740567+dklimpel@users.noreply.github.com>2020-03-09 19:51:31 +0100
committerdklimpel <5740567+dklimpel@users.noreply.github.com>2020-03-09 19:51:31 +0100
commit04f4b5f6f87fbba0b2f1a4f011c496de3021c81a (patch)
tree3739d23b36fc6a0ce1bf2d6641cbbb54f653a118 /tests/handlers
parentadd disable_3pid_changes (diff)
downloadsynapse-04f4b5f6f87fbba0b2f1a4f011c496de3021c81a.tar.xz
add tests
Diffstat (limited to 'tests/handlers')
-rw-r--r--tests/handlers/test_profile.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/handlers/test_profile.py b/tests/handlers/test_profile.py
index b85520c688..98b508c3d4 100644
--- a/tests/handlers/test_profile.py
+++ b/tests/handlers/test_profile.py
@@ -70,7 +70,7 @@ class ProfileTestCase(unittest.TestCase):
         yield self.store.create_profile(self.frank.localpart)
 
         self.handler = hs.get_profile_handler()
-        self.config = hs.config
+        self.hs = hs
 
     @defer.inlineCallbacks
     def test_get_my_name(self):
@@ -93,7 +93,7 @@ class ProfileTestCase(unittest.TestCase):
 
     @defer.inlineCallbacks
     def test_set_my_name_if_disabled(self):
-        self.config.disable_set_displayname = True
+        self.hs.config.disable_set_displayname = True
 
         # Set first displayname is allowed, if displayname is null
         self.store.set_profile_displayname(self.frank.localpart, "Frank")
@@ -164,7 +164,7 @@ class ProfileTestCase(unittest.TestCase):
 
     @defer.inlineCallbacks
     def test_set_my_avatar_if_disabled(self):
-        self.config.disable_set_avatar_url = True
+        self.hs.config.disable_set_avatar_url = True
 
         # Set first time avatar is allowed, if displayname is null
         self.store.set_profile_avatar_url(