diff options
author | Mark Haines <mark.haines@matrix.org> | 2016-01-29 14:53:14 +0000 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2016-01-29 14:53:14 +0000 |
commit | f2d5ff5bf2cb95eb0a6619ae7fb40603175c8a7d (patch) | |
tree | b86aae0eeda6ad3986f8018013205b1bfe75bb6a | |
parent | Merge remote-tracking branch 'origin/develop' into markjh/3pid (diff) | |
download | synapse-f2d5ff5bf2cb95eb0a6619ae7fb40603175c8a7d.tar.xz |
Fix the mock homserver used in the tests
-rw-r--r-- | tests/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/utils.py b/tests/utils.py index 43cc2b30cd..431252a6f1 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -49,6 +49,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): config.disable_registration = False config.macaroon_secret_key = "not even a little secret" config.server_name = "server.under.test" + config.trusted_third_party_id_servers = [] if "clock" not in kargs: kargs["clock"] = MockClock() |