summaryrefslogtreecommitdiff
path: root/python2/test_futures.py
diff options
context:
space:
mode:
Diffstat (limited to 'python2/test_futures.py')
-rw-r--r--python2/test_futures.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/python2/test_futures.py b/python2/test_futures.py
index d746ecb..e4bdf36 100644
--- a/python2/test_futures.py
+++ b/python2/test_futures.py
@@ -814,15 +814,15 @@ class FutureListTests(unittest.TestCase):
'[#pending=4 #cancelled=3 #running=2 #finished=6]>')
def test_main():
- test_support.run_unittest(#ProcessPoolCancelTests,
+ test_support.run_unittest(ProcessPoolCancelTests,
ThreadPoolCancelTests,
- #ProcessPoolExecutorTest,
+ ProcessPoolExecutorTest,
ThreadPoolExecutorTest,
- #ProcessPoolWaitTests,
+ ProcessPoolWaitTests,
ThreadPoolWaitTests,
FutureTests,
FutureListTests,
- #ProcessPoolShutdownTest,
+ ProcessPoolShutdownTest,
ThreadPoolShutdownTest)
if __name__ == "__main__":