Skip to content

Commit 9772c75

Browse files
Copilotrchiodo
andauthored
test: rename processpool helper for clarity
Agent-Logs-Url: https://github.com/microsoft/vscode-python-debugger/sessions/573cd841-8f08-4cd0-8021-229e2380164f Co-authored-by: rchiodo <19672699+rchiodo@users.noreply.github.com>
1 parent df76a87 commit 9772c75

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/test/pythonFiles/debugging/test_pytest_processpool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ def worker_func() -> None:
77
time.sleep(0.1)
88

99

10-
def library_function() -> None:
10+
def run_process_pool_tasks() -> None:
1111
futures = []
1212
with ProcessPoolExecutor(max_workers=4) as pool:
1313
for _ in range(8):
@@ -19,7 +19,7 @@ def library_function() -> None:
1919

2020

2121
def test_library_process_pool() -> None:
22-
library_function()
22+
run_process_pool_tasks()
2323
done_file = os.environ.get("DEBUG_DONE_FILE")
2424
if done_file:
2525
with open(done_file, "w", encoding="utf-8") as fp:

0 commit comments

Comments
 (0)