diff options
author | Daniel Wagner-Hall <daniel@matrix.org> | 2016-02-03 14:42:01 +0000 |
---|---|---|
committer | Daniel Wagner-Hall <daniel@matrix.org> | 2016-02-03 14:42:01 +0000 |
commit | 5054806ec1f64fd784d9e74d73a678643d539c3f (patch) | |
tree | 56c2064c9e77f5b6644ca55e59e3e195df234e23 /tests/utils.py | |
parent | Add macaroon inspection script (diff) | |
download | synapse-5054806ec1f64fd784d9e74d73a678643d539c3f.tar.xz |
Rename config field to reflect yaml name
Diffstat (limited to 'tests/utils.py')
-rw-r--r-- | tests/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py index 431252a6f1..3b1eb50d8d 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -46,7 +46,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): config = Mock() config.signing_key = [MockKey()] config.event_cache_size = 1 - config.disable_registration = False + config.enable_registration = True config.macaroon_secret_key = "not even a little secret" config.server_name = "server.under.test" config.trusted_third_party_id_servers = [] |