Commit 2a1a10d0 authored by Antoine Pitrou's avatar Antoine Pitrou

test_ssl: use a bytestring here

parent 1c0cbbe2
......@@ -2324,7 +2324,7 @@ else:
s.close()
self.assertRaises(ValueError, s.read, 1024)
self.assertRaises(ValueError, s.write, 'hello')
self.assertRaises(ValueError, s.write, b'hello')
def test_main(verbose=False):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment