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

Commit

Permalink
Merge pull request #194 from Lukasa/failing-python32-tests
Browse files Browse the repository at this point in the history
Make passphrase a bytestring.
  • Loading branch information
Lukasa committed Jan 26, 2016
2 parents e1fd136 + 361a39a commit 89d4227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_hyper_SSLContext.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
)

0 comments on commit 89d4227

Please sign in to comment.