diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/bindings/test_openssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bindings/test_openssl.py b/tests/bindings/test_openssl.py index db71e328..e0baaf53 100644 --- a/tests/bindings/test_openssl.py +++ b/tests/bindings/test_openssl.py @@ -26,4 +26,4 @@ class TestOpenSSL(object): if it starts with OpenSSL as that appears to be true for every OpenSSL. """ - assert api.openssl_version_text().find("OpenSSL") == 0 + assert api.openssl_version_text().startswith("OpenSSL") |