Skip to content

Commit 92ce41c

Browse files
authored
gh-71052: fix test_concurrent_futures wasi regression. (#115923)
Fix the WASI test_concurrent_futures regression from #115917.
1 parent 6d34eb0 commit 92ce41c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Lib/test/test_concurrent_futures/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import os.path
22
import unittest
33
from test import support
4-
from test.support import import_helper
4+
from test.support import threading_helper
5+
6+
7+
# Adjust if we ever have a platform with processes but not threads.
8+
threading_helper.requires_working_threading(module=True)
59

610

711
if support.check_sanitizer(address=True, memory=True):

0 commit comments

Comments
 (0)