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,
)
|