hghave: fix typo of sslutil.supportedprotocols stable
authorYuya Nishihara <yuya@tcha.org>
Tue, 19 Jul 2016 21:16:44 +0900
branchstable
changeset 29611 334632380e22
parent 29610 754f63671229
child 29612 a234b32b744a
child 29620 fe0eeef0986a
hghave: fix typo of sslutil.supportedprotocols
tests/hghave.py
--- a/tests/hghave.py	Tue Jul 19 03:29:53 2016 -0700
+++ b/tests/hghave.py	Tue Jul 19 21:16:44 2016 +0900
@@ -442,7 +442,7 @@
 @check("tls1.2", "TLS 1.2 protocol support")
 def has_tls1_2():
     from mercurial import sslutil
-    return 'tls1.2' in sslutil.supportprotocols
+    return 'tls1.2' in sslutil.supportedprotocols
 
 @check("windows", "Windows")
 def has_windows():