summary refs log tree commit diff
path: root/tests/storage/test_directory.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2017-11-09 20:53:11 +0000
committerRichard van der Hoff <richard@matrix.org>2017-11-13 10:46:08 +0000
commit63ef607f1f6a9f998796cd3b6bcbcdb95fd08557 (patch)
treee6ea8d390db11815cce1fd0d5497f252e21dc2c7 /tests/storage/test_directory.py
parentMake __init__ consitstent across Store heirarchy (diff)
downloadsynapse-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_directory.py')
-rw-r--r--tests/storage/test_directory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/storage/test_directory.py b/tests/storage/test_directory.py

index b087892e0b..95709cd50a 100644 --- a/tests/storage/test_directory.py +++ b/tests/storage/test_directory.py
@@ -29,7 +29,7 @@ class DirectoryStoreTestCase(unittest.TestCase): def setUp(self): hs = yield setup_test_homeserver() - self.store = DirectoryStore(hs) + self.store = DirectoryStore(None, hs) self.room = RoomID.from_string("!abcde:test") self.alias = RoomAlias.from_string("#my-room:test")