Skip to content

Commit 87eb623

Browse files
committed
gh-132969: Remove @unittest.skipIf annotations since spawn works on windows
1 parent 1a8919b commit 87eb623

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

Lib/test/test_concurrent_futures/test_shutdown.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -369,14 +369,12 @@ def _run_test_issue_gh_132969(self, max_workers: int) -> int:
369369
executor.shutdown(wait=False)
370370
return result
371371

372-
@unittest.skipIf(sys.platform == 'win32', 'Test does not run on Windows')
373372
def test_shutdown_gh_132969_case_1(self):
374373
# gh-132969: test that exception "object of type 'NoneType' has no len()"
375374
# is not raised when shutdown(wait=False) is called.
376375
result = self._run_test_issue_gh_132969(2)
377376
self.assertEqual(result, 1)
378377

379-
@unittest.skipIf(sys.platform == 'win32', 'Test does not run on Windows')
380378
def test_shutdown_gh_132969_case_2(self):
381379
# gh-132969: test that process does not hang and
382380
# exception "object of type 'NoneType' has no len()" is not raised

0 commit comments

Comments
 (0)