diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2013-01-12 21:00:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2013-01-12 21:00:09 (GMT) |
commit | db5012ab479889adce13da8bcc6bf6ad53aaedeb (patch) | |
tree | 4b43de3d3a2a89e9e1b317217c403106dcc489ec /Lib/test/test_ssl.py | |
parent | e1ceb50cdf597c292f76099ef606fce75770f5d9 (diff) | |
download | cpython-db5012ab479889adce13da8bcc6bf6ad53aaedeb.zip cpython-db5012ab479889adce13da8bcc6bf6ad53aaedeb.tar.gz cpython-db5012ab479889adce13da8bcc6bf6ad53aaedeb.tar.bz2 |
In test_ssl, threaded tests shouldn't need the "network" resource to be enabled
Diffstat (limited to 'Lib/test/test_ssl.py')
-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 7fbc30d..4bf7ad8 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -2032,7 +2032,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: |