Fix tests for Store.__init__ update

Fix the test to pass the right number of args to the Store constructors
This commit is contained in:
Richard van der Hoff 2017-11-09 20:53:11 +00:00
parent 6cfee09be9
commit 63ef607f1f
5 changed files with 11 additions and 11 deletions

View file

@ -29,7 +29,7 @@ class ProfileStoreTestCase(unittest.TestCase):
def setUp(self):
hs = yield setup_test_homeserver()
self.store = ProfileStore(hs)
self.store = ProfileStore(None, hs)
self.u_frank = UserID.from_string("@frank:test")