diff options
Diffstat (limited to 'tests/hazmat/bindings')
-rw-r--r-- | tests/hazmat/bindings/test_openssl.py | 2 |
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): |