diff options
author | Evilham <github@evilham.com> | 2023-08-29 15:33:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 09:33:58 -0400 |
commit | 63b51ef3fbb548cdc7899720f8c40bb65756f655 (patch) | |
tree | 301946a169042a8033df9a2fcefa9805bcb9e7cd /tests/unittest.py | |
parent | Update black & fix the targeted Python versions. (#16187) (diff) | |
download | synapse-63b51ef3fbb548cdc7899720f8c40bb65756f655.tar.xz |
Support IPv6-only SMTP servers (#16155)
Use Twisted HostnameEndpoint to connect to SMTP servers (instead of connectTCP/connectSSL) which properly supports IPv6-only servers.
Diffstat (limited to 'tests/unittest.py')
-rw-r--r-- | tests/unittest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unittest.py b/tests/unittest.py index b0721e060c..40672a4415 100644 --- a/tests/unittest.py +++ b/tests/unittest.py @@ -313,7 +313,7 @@ class HomeserverTestCase(TestCase): servlets: List of servlet registration function. user_id (str): The user ID to assume if auth is hijacked. hijack_auth: Whether to hijack auth to return the user specified - in user_id. + in user_id. """ hijack_auth: ClassVar[bool] = True |