mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-05 12:44:27 -04:00
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:
parent
6cfee09be9
commit
63ef607f1f
5 changed files with 11 additions and 11 deletions
|
@ -29,7 +29,7 @@ class PresenceStoreTestCase(unittest.TestCase):
|
|||
def setUp(self):
|
||||
hs = yield setup_test_homeserver(clock=MockClock())
|
||||
|
||||
self.store = PresenceStore(hs)
|
||||
self.store = PresenceStore(None, hs)
|
||||
|
||||
self.u_apple = UserID.from_string("@apple:test")
|
||||
self.u_banana = UserID.from_string("@banana:test")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue