aboutsummaryrefslogtreecommitdiffstats
path: root/tests/hazmat/bindings
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-05 11:15:55 -0500
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-07-05 11:15:55 -0500
commit419e67a1d515ec7883a1e31608c1618e226fbffb (patch)
tree0699120be3aca2e479274af5561b525742e98b4e /tests/hazmat/bindings
parent9c80e6c8e4b1ae563baffbcbd2918e07f4f709e3 (diff)
downloadcryptography-419e67a1d515ec7883a1e31608c1618e226fbffb.tar.gz
cryptography-419e67a1d515ec7883a1e31608c1618e226fbffb.tar.bz2
cryptography-419e67a1d515ec7883a1e31608c1618e226fbffb.zip
change env variable name, handle empty string
Diffstat (limited to 'tests/hazmat/bindings')
-rw-r--r--tests/hazmat/bindings/test_openssl.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/hazmat/bindings/test_openssl.py b/tests/hazmat/bindings/test_openssl.py
index 4b51ae82..d22c4fd2 100644
--- a/tests/hazmat/bindings/test_openssl.py
+++ b/tests/hazmat/bindings/test_openssl.py
@@ -143,6 +143,8 @@ class TestOpenSSL(object):
def test_windows_static_dynamic_libraries(self):
assert "ssleay32mt" in _get_windows_libraries("static")
+ assert "ssleay32mt" in _get_windows_libraries("")
+
assert "ssleay32" in _get_windows_libraries("dynamic")
with pytest.raises(ValueError):