summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ssl.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-01-12 21:00:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-01-12 21:00:09 (GMT)
commitdb5012ab479889adce13da8bcc6bf6ad53aaedeb (patch)
tree4b43de3d3a2a89e9e1b317217c403106dcc489ec /Lib/test/test_ssl.py
parente1ceb50cdf597c292f76099ef606fce75770f5d9 (diff)
downloadcpython-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.py2
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: