summary refs log tree commit diff
path: root/synmark/__init__.py
diff options
context:
space:
mode:
authorRichard van der Hoff <1389908+richvdh@users.noreply.github.com>2020-10-16 21:45:31 +0100
committerGitHub <noreply@github.com>2020-10-16 21:45:31 +0100
commit0afd83584bcaccc98b020900a98b3fbe9f825811 (patch)
treef98a04cf6894be12c1c9a743b8b2cb8a7d19d957 /synmark/__init__.py
parentType annotations for LruCache (#8562) (diff)
downloadsynapse-0afd83584bcaccc98b020900a98b3fbe9f825811.tar.xz
Fix synmark (#8571)
This seems to have been broken since #6513.
Diffstat (limited to '')
-rw-r--r--synmark/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synmark/__init__.py b/synmark/__init__.py

index 53698bd5ab..9ec72c1973 100644 --- a/synmark/__init__.py +++ b/synmark/__init__.py
@@ -41,7 +41,7 @@ async def make_homeserver(reactor, config=None): config_obj = HomeServerConfig() config_obj.parse_config_dict(config, "", "") - hs = await setup_test_homeserver( + hs = setup_test_homeserver( cleanup_tasks.append, config=config_obj, reactor=reactor, clock=clock ) stor = hs.get_datastore()