From 704f2f382f3a6385ce5f0f728168590b7ac53a3d Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 20 Apr 2014 15:26:53 -0500 Subject: move some comments --- tests/hazmat/bindings/test_openssl.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py index cf3024a7..1dbd23b4 100644 --- a/tests/hazmat/bindings/test_openssl.py +++ b/tests/hazmat/bindings/test_openssl.py @@ -104,8 +104,8 @@ class TestOpenSSL(object): res = b.lib.Cryptography_add_osrandom_engine() assert res == 2 - # Test that we're properly handling 32-bit unsigned on all platforms def test_ssl_ctx_options(self): + # Test that we're properly handling 32-bit unsigned on all platforms. b = Binding() assert b.lib.SSL_OP_ALL > 0 ctx = b.lib.SSL_CTX_new(b.lib.TLSv1_method()) @@ -114,8 +114,8 @@ class TestOpenSSL(object): assert resp == b.lib.SSL_OP_ALL assert b.lib.SSL_OP_ALL == b.lib.SSL_CTX_get_options(ctx) - # Test that we're properly handling 32-bit unsigned on all platforms def test_ssl_options(self): + # Test that we're properly handling 32-bit unsigned on all platforms. b = Binding() assert b.lib.SSL_OP_ALL > 0 ctx = b.lib.SSL_CTX_new(b.lib.TLSv1_method()) @@ -126,8 +126,8 @@ class TestOpenSSL(object): assert resp == b.lib.SSL_OP_ALL assert b.lib.SSL_OP_ALL == b.lib.SSL_get_options(ssl) - # Test that we're properly handling 32-bit unsigned on all platforms def test_ssl_mode(self): + # Test that we're properly handling 32-bit unsigned on all platforms. b = Binding() assert b.lib.SSL_OP_ALL > 0 ctx = b.lib.SSL_CTX_new(b.lib.TLSv1_method()) -- cgit v1.2.3