changeset 13418:28555e294104

tests: update ssl requirement for test-https.t hgweb requires OpenSSL for serving https.
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 16 Feb 2011 03:28:22 +0100
parents 0748e18be470
children 1cc73868c740
files tests/hghave
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/tests/hghave	Wed Feb 09 10:53:09 2011 +0100
+++ b/tests/hghave	Wed Feb 16 03:28:22 2011 +0100
@@ -173,6 +173,8 @@
 def has_ssl():
     try:
         import ssl
+        import OpenSSL
+        OpenSSL.SSL.Context
         return True
     except ImportError:
         return False