# HG changeset patch # User Yuya Nishihara # Date 1468930604 -32400 # Node ID 334632380e22e4aa960068fc7e173bbe8a13d983 # Parent 754f6367122953efdc7b5539a53c99308ee90216 hghave: fix typo of sslutil.supportedprotocols diff -r 754f63671229 -r 334632380e22 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():