summary refs log tree commit diff
path: root/tests/utils.py
diff options
context:
space:
mode:
authorPatrick Cloke <patrickc@matrix.org>2020-12-02 08:40:21 -0500
committerPatrick Cloke <patrickc@matrix.org>2020-12-02 08:40:21 -0500
commit16744644f665991eb7b6a41e8c16e71ccdb71709 (patch)
tree8c607ab32dc9881a2c7c71e5632b71557e1999e1 /tests/utils.py
parentMerge remote-tracking branch 'origin/develop' into matrix-org-hotfixes (diff)
parentFix a regression when grandfathering SAML users. (#8855) (diff)
downloadsynapse-16744644f665991eb7b6a41e8c16e71ccdb71709.tar.xz
Merge branch 'release-v1.24.0' of github.com:matrix-org/synapse into matrix-org-hotfixes
Diffstat (limited to 'tests/utils.py')
-rw-r--r--tests/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/utils.py b/tests/utils.py

index acec74e9e9..c8d3ffbaba 100644 --- a/tests/utils.py +++ b/tests/utils.py
@@ -271,7 +271,7 @@ def setup_test_homeserver( # Install @cache_in_self attributes for key, val in kwargs.items(): - setattr(hs, key, val) + setattr(hs, "_" + key, val) # Mock TLS hs.tls_server_context_factory = Mock()