From 3835e52f89ecaa7c7c9ab18872d19a758e449135 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Sun, 2 Feb 2014 11:12:30 -0500 Subject: clean up messy comment --- OpenSSL/test/test_ssl.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/OpenSSL/test/test_ssl.py b/OpenSSL/test/test_ssl.py index 712009b..a9b9890 100644 --- a/OpenSSL/test/test_ssl.py +++ b/OpenSSL/test/test_ssl.py @@ -702,11 +702,11 @@ class ContextTests(TestCase, _LoopbackMixin): handshake(clientSSL, serverSSL) - # The callback must always be called with the connection it is a - # callback for as the first argument. It would probably be better to - # split this into separate tests for client and server side info - # callbacks. It would also be good to at least assert *something* - # about `where` and `ret`. + # The callback must always be called with a Connection instance as the + # first argument. It would probably be better to split this into + # separate tests for client and server side info callbacks so we could + # assert it is called with the right Connection instance. It would + # also be good to assert *something* about `where` and `ret`. notConnections = [ conn for (conn, where, ret) in called if not isinstance(conn, Connection)] -- cgit v1.2.1