diff options
author | Mark Haines <mjark@negativecurvature.net> | 2016-01-29 16:34:13 +0100 |
---|---|---|
committer | Mark Haines <mjark@negativecurvature.net> | 2016-01-29 16:34:13 +0100 |
commit | b91baae09d299aacdc0f63c6be54f805e11a3e9d (patch) | |
tree | 5d481797667d506030c3b43904b57640ada107c0 /tests/utils.py | |
parent | Bump AccountDataAndTagsChangeCache size (diff) | |
parent | Add missing param to the log line (diff) | |
download | synapse-b91baae09d299aacdc0f63c6be54f805e11a3e9d.tar.xz |
Merge pull request #539 from matrix-org/markjh/3pid
Fix up the /account/3pid API
Diffstat (limited to 'tests/utils.py')
-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() |