Skip to content
Snippets Groups Projects
Commit dd3711bd authored by Erik Johnston's avatar Erik Johnston
Browse files

Fix tests.handlers.test_directory

parent b15e8d5b
Branches
Tags
No related merge requests found
......@@ -21,9 +21,8 @@ from mock import Mock
from synapse.server import HomeServer
from synapse.handlers.directory import DirectoryHandler
from synapse.storage.directory import RoomAliasMapping
from tests.utils import SQLiteMemoryDbPool
from tests.utils import SQLiteMemoryDbPool, MockKey
class DirectoryHandlers(object):
......@@ -48,11 +47,15 @@ class DirectoryTestCase(unittest.TestCase):
db_pool = SQLiteMemoryDbPool()
yield db_pool.prepare()
self.mock_config = Mock()
self.mock_config.signing_key = [MockKey()]
hs = HomeServer("test",
db_pool=db_pool,
http_client=None,
resource_for_federation=Mock(),
replication_layer=self.mock_federation,
config=self.mock_config,
)
hs.handlers = DirectoryHandlers(hs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment