diff options
author | Richard van der Hoff <richard@matrix.org> | 2017-11-09 20:53:11 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2017-11-13 10:46:08 +0000 |
commit | 63ef607f1f6a9f998796cd3b6bcbcdb95fd08557 (patch) | |
tree | e6ea8d390db11815cce1fd0d5497f252e21dc2c7 /tests/storage/test_presence.py | |
parent | Make __init__ consitstent across Store heirarchy (diff) | |
download | synapse-63ef607f1f6a9f998796cd3b6bcbcdb95fd08557.tar.xz |
Fix tests for Store.__init__ update
Fix the test to pass the right number of args to the Store constructors
Diffstat (limited to 'tests/storage/test_presence.py')
-rw-r--r-- | tests/storage/test_presence.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_presence.py b/tests/storage/test_presence.py index 63203cea35..f5fcb611d4 100644 --- a/tests/storage/test_presence.py +++ b/tests/storage/test_presence.py @@ -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") |