# HG changeset patch # User Mads Kiilerich # Date 2011-02-16 02:28:22 # Node ID 28555e2941049f7dc8e81d6191235bc723ff7f36 # Parent 0748e18be4704ff74de000fe9704efc3903435fd tests: update ssl requirement for test-https.t hgweb requires OpenSSL for serving https. diff --git a/tests/hghave b/tests/hghave --- a/tests/hghave +++ b/tests/hghave @@ -173,6 +173,8 @@ def has_outer_repo(): def has_ssl(): try: import ssl + import OpenSSL + OpenSSL.SSL.Context return True except ImportError: return False