# HG changeset patch # User Mads Kiilerich # Date 1297823302 -3600 # Node ID 28555e2941049f7dc8e81d6191235bc723ff7f36 # Parent 0748e18be4704ff74de000fe9704efc3903435fd tests: update ssl requirement for test-https.t hgweb requires OpenSSL for serving https. diff -r 0748e18be470 -r 28555e294104 tests/hghave --- 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