diff options
author | Erik Johnston <erik@matrix.org> | 2016-06-17 15:13:13 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-06-17 15:13:13 +0100 |
commit | 0113ad36ee7bc315aa162c42277b90764825f219 (patch) | |
tree | f56860bf13476fc31239b6a3f15a21d7f7fc7948 /tests | |
parent | Turn use_frozen_events off by default (diff) | |
download | synapse-0113ad36ee7bc315aa162c42277b90764825f219.tar.xz |
Enable use_frozen_events in tests
Diffstat (limited to '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 e19ae581e0..6e41ae1ff6 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -54,6 +54,7 @@ def setup_test_homeserver(name="test", datastore=None, config=None, **kargs): config.trusted_third_party_id_servers = [] config.room_invite_state_types = [] + config.use_frozen_dicts = True config.database_config = {"name": "sqlite3"} if "clock" not in kargs: |