Skip to content
This repository was archived by the owner on Jan 13, 2021. It is now read-only.

Commit 89d4227

Browse files
committed
Merge pull request #194 from Lukasa/failing-python32-tests
Make passphrase a bytestring.
2 parents e1fd136 + 361a39a commit 89d4227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_hyper_SSLContext.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ def test_custom_context_with_cert_as_file(self):
3939
context.load_cert_chain(
4040
certfile=CLIENT_CERT_FILE,
4141
keyfile=CLIENT_KEY_FILE,
42-
password='abc123'
42+
password=b'abc123'
4343
)

0 commit comments

Comments
 (0)