In test_ssl, threaded tests shouldn't need the network resource to be enabled

This commit is contained in:
Antoine Pitrou 2013-01-12 22:00:54 +01:00
commit 6b4e2a9c02

View file

@ -2166,7 +2166,7 @@ def test_main(verbose=False):
if _have_threads:
thread_info = support.threading_setup()
if thread_info and support.is_resource_enabled('network'):
if thread_info:
tests.append(ThreadedTests)
try: