diff options
author | Glyph <glyph@twistedmatrix.com> | 2015-06-26 22:08:44 -0700 |
---|---|---|
committer | Glyph <glyph@twistedmatrix.com> | 2015-06-26 22:08:44 -0700 |
commit | b51d246eb6ccaed7920ba6dd6a816f74d1158c16 (patch) | |
tree | ec8c1c20f55da6e19df03f83cf82eb17c705b54c /tests/hazmat/backends | |
parent | b3d37a5d485bcd295d1933d638180e9cd5d23478 (diff) | |
download | cryptography-b51d246eb6ccaed7920ba6dd6a816f74d1158c16.tar.gz cryptography-b51d246eb6ccaed7920ba6dd6a816f74d1158c16.tar.bz2 cryptography-b51d246eb6ccaed7920ba6dd6a816f74d1158c16.zip |
remove remaining vestiges, make adding twice work
Diffstat (limited to 'tests/hazmat/backends')
-rw-r--r-- | tests/hazmat/backends/test_openssl.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tests/hazmat/backends/test_openssl.py b/tests/hazmat/backends/test_openssl.py index 8846491a..b24f03a8 100644 --- a/tests/hazmat/backends/test_openssl.py +++ b/tests/hazmat/backends/test_openssl.py @@ -259,9 +259,7 @@ class TestOpenSSLRandomEngine(object): stdout=out ) - osrandom_engine_name = backend._ffi.string( - backend._lib.Cryptography_osrandom_engine_name - ) + osrandom_engine_name = backend._binding._osrandom_engine_name assert engine_name.read().encode('ascii') == osrandom_engine_name |