diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-01-12 21:00:54 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-01-12 21:00:54 (GMT) |
commit | 6b4e2a9c023c81c785740421cc19e96b56c3224f (patch) | |
tree | 49ec40ccbe1da9fc68da692905abd70c41017eb5 /Lib | |
parent | e9bb4733d9c7ada5d75d85098bb2e00eb62a2861 (diff) | |
parent | db5012ab479889adce13da8bcc6bf6ad53aaedeb (diff) | |
download | cpython-6b4e2a9c023c81c785740421cc19e96b56c3224f.zip cpython-6b4e2a9c023c81c785740421cc19e96b56c3224f.tar.gz cpython-6b4e2a9c023c81c785740421cc19e96b56c3224f.tar.bz2 |
In test_ssl, threaded tests shouldn't need the network resource to be enabled
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 58ea9cd..febebaf 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -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: |