aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2017-05-24 16:17:04 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2017-05-24 16:17:04 +0200
commit6214c6e185179a9203fae00e48eeee0e43dadd59 (patch)
treede5390b7efc41e48a695c71f83e13470d5692b42 /test
parent8b31f5c324fac1296d0a89fc42f4e86046d28970 (diff)
downloadmitmproxy-6214c6e185179a9203fae00e48eeee0e43dadd59.tar.gz
mitmproxy-6214c6e185179a9203fae00e48eeee0e43dadd59.tar.bz2
mitmproxy-6214c6e185179a9203fae00e48eeee0e43dadd59.zip
fix openssl cipher_list bytes/str deprecation
Diffstat (limited to 'test')
-rw-r--r--test/mitmproxy/net/test_tcp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mitmproxy/net/test_tcp.py b/test/mitmproxy/net/test_tcp.py
index 234e8afb..adf8701a 100644
--- a/test/mitmproxy/net/test_tcp.py
+++ b/test/mitmproxy/net/test_tcp.py
@@ -391,7 +391,7 @@ class TestSNI(tservers.ServerTestBase):
class TestServerCipherList(tservers.ServerTestBase):
handler = ClientCipherListHandler
ssl = dict(
- cipher_list=b'AES256-GCM-SHA384'
+ cipher_list='AES256-GCM-SHA384'
)
def test_echo(self):