From 361a39a9c229967857ed0dabf11a8572db41ce62 Mon Sep 17 00:00:00 2001 From: Cory Benfield Date: Tue, 26 Jan 2016 11:13:17 +0000 Subject: [PATCH] Make passphrase a bytestring. --- test/test_hyper_SSLContext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_hyper_SSLContext.py b/test/test_hyper_SSLContext.py index 5399ccbc..67996c9a 100644 --- a/test/test_hyper_SSLContext.py +++ b/test/test_hyper_SSLContext.py @@ -39,5 +39,5 @@ def test_custom_context_with_cert_as_file(self): context.load_cert_chain( certfile=CLIENT_CERT_FILE, keyfile=CLIENT_KEY_FILE, - password='abc123' + password=b'abc123' )