diff options
author | Richard van der Hoff <richard@matrix.org> | 2018-05-18 15:41:40 +0100 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2018-05-22 11:54:51 +0100 |
commit | d5dca9a04fbac7fea0822eaf2fd513b13449184c (patch) | |
tree | 8d2f5e5a6f21f6461b64878f3fef6f2e5500e3ce /tests/utils.py | |
parent | Send users a server notice about consent (diff) | |
download | synapse-d5dca9a04fbac7fea0822eaf2fd513b13449184c.tar.xz |
Move consent config parsing into ConsentConfig
turns out we need to reuse this, so it's better in the config class.
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 63d8e9c640..9626e6fd78 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -63,7 +63,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): config.federation_rc_concurrent = 10 config.filter_timeline_limit = 5000 config.user_directory_search_all_users = False - config.consent_config = None + config.user_consent_server_notice_content = None # disable user directory updates, because they get done in the # background, which upsets the test runner. |