# HG changeset patch # User Yuya Nishihara # Date 2016-07-19 12:16:44 # Node ID 334632380e22e4aa960068fc7e173bbe8a13d983 # Parent 754f6367122953efdc7b5539a53c99308ee90216 hghave: fix typo of sslutil.supportedprotocols diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -442,7 +442,7 @@ def has_defaultcacertsloaded(): @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():