summary refs log tree commit diff
path: root/tests/storage/test_profile.py
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@arasphere.net>2018-05-04 02:26:46 +0100
committerGitHub <noreply@github.com>2018-05-04 02:26:46 +0100
commitc3ec84dbcdf1d43a4e37d10d9e4c1881f485c29d (patch)
tree6df3d6dd97f1c25c2daf4dabc043df50347dc886 /tests/storage/test_profile.py
parentunbreak 3pid deletion (diff)
parentunbreak tests (diff)
downloadsynapse-c3ec84dbcdf1d43a4e37d10d9e4c1881f485c29d.tar.xz
Merge pull request #3096 from matrix-org/matthew/derive-mxid-from-3pid
add the register_mxid_from_3pid setting (untested)
Diffstat (limited to 'tests/storage/test_profile.py')
-rw-r--r--tests/storage/test_profile.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/storage/test_profile.py b/tests/storage/test_profile.py

index 1bfabc15ad..d173195787 100644 --- a/tests/storage/test_profile.py +++ b/tests/storage/test_profile.py
@@ -35,10 +35,6 @@ class ProfileStoreTestCase(unittest.TestCase): @defer.inlineCallbacks def test_displayname(self): - yield self.store.create_profile( - self.u_frank.localpart - ) - yield self.store.set_profile_displayname( self.u_frank.localpart, "Frank", 1, ) @@ -50,10 +46,6 @@ class ProfileStoreTestCase(unittest.TestCase): @defer.inlineCallbacks def test_avatar_url(self): - yield self.store.create_profile( - self.u_frank.localpart - ) - yield self.store.set_profile_avatar_url( self.u_frank.localpart, "http://my.site/here", 1, )