diff options
author | Glyph <glyph@twistedmatrix.com> | 2015-06-27 18:41:16 -0700 |
---|---|---|
committer | Glyph <glyph@twistedmatrix.com> | 2015-06-27 18:41:16 -0700 |
commit | 1e3ffe10719ef8eeeda0df79aa3e708400f7028a (patch) | |
tree | b1653800ced15b9a6ff03520b0cf8b0bb8a1e99a /tests/hazmat | |
parent | eb8059d7bd4abc11a14bdf149812057d505a2685 (diff) | |
download | cryptography-1e3ffe10719ef8eeeda0df79aa3e708400f7028a.tar.gz cryptography-1e3ffe10719ef8eeeda0df79aa3e708400f7028a.tar.bz2 cryptography-1e3ffe10719ef8eeeda0df79aa3e708400f7028a.zip |
handle previous registration by raising RuntimeError
Diffstat (limited to 'tests/hazmat')
-rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py index fe78b0ba..75a8e3f1 100644 --- a/tests/hazmat/bindings/test_openssl.py +++ b/tests/hazmat/bindings/test_openssl.py @@ -89,8 +89,8 @@ class TestOpenSSL(object): def test_add_engine_more_than_once(self): b = Binding() - res = b._register_osrandom_engine() - assert res == 2 + with pytest.raises(RuntimeError): + b._register_osrandom_engine() def test_ssl_ctx_options(self): # Test that we're properly handling 32-bit unsigned on all platforms. |