In test_ssl, threaded tests shouldn't need the "network" resource to be enabled
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 @@
 
     if _have_threads:
         thread_info = support.threading_setup()
-        if thread_info and support.is_resource_enabled('network'):
+        if thread_info:
             tests.append(ThreadedTests)
 
     try: