summary refs log tree commit diff
path: root/tests/utils.py
diff options
context:
space:
mode:
authorAndrew Morgan <andrew@amorgan.xyz>2020-12-31 17:19:14 +0000
committerAndrew Morgan <andrew@amorgan.xyz>2020-12-31 17:19:14 +0000
commita839d0f32df51b18908c3f13c89cd10d478494a6 (patch)
treeb81447dbeeb86e75f46f644bb3f9c574d563f640 /tests/utils.py
parentMerge commit 'a090b8620' into anoa/dinsic_release_1_23_1 (diff)
parentFix broken testcase (#8851) (diff)
downloadsynapse-a839d0f32df51b18908c3f13c89cd10d478494a6.tar.xz
Merge commit '09ac0569f' into anoa/dinsic_release_1_23_1
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 6e7a6fd3cf..1584eacb12 100644 --- a/tests/utils.py +++ b/tests/utils.py
@@ -273,7 +273,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()