openssl_version_text now calls startswith rather than find
diff --git a/tests/bindings/test_openssl.py b/tests/bindings/test_openssl.py
index db71e32..e0baaf5 100644
--- a/tests/bindings/test_openssl.py
+++ b/tests/bindings/test_openssl.py
@@ -26,4 +26,4 @@
         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")