summary refs log tree commit diff
path: root/tests/storage/test_profile.py
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2018-05-04 01:58:45 +0100
committerMatthew Hodgson <matthew@matrix.org>2018-05-04 01:58:45 +0100
commit6372dff771413c2b9cd5648cbb6de01a679ef801 (patch)
tree6b039b22a42610ce816e427615515fa4ed49f494 /tests/storage/test_profile.py
parentdon't pass a requester if we don't have one to set_displayname (diff)
downloadsynapse-6372dff771413c2b9cd5648cbb6de01a679ef801.tar.xz
remove create_profile from tests
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, )