Skip to content

Commit

Permalink
Fix construction of processes lists
Browse files Browse the repository at this point in the history
Co-authored-by: svc-codecritic <[email protected]>
  • Loading branch information
pentschev and svc-codecritic authored Oct 16, 2024
1 parent 3c09652 commit 28a2215
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/ucxx/ucxx/_lib/tests/test_cancel.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,6 @@ def test_message_probe():
args=(queue,),
)
client.start()
join_processes([client + server], timeout=10)
join_processes([client, server], timeout=10)
terminate_process(client)
terminate_process(server)
2 changes: 1 addition & 1 deletion python/ucxx/ucxx/_lib/tests/test_endpoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,6 @@ def test_close_callback(server_close_callback):
args=(port, server_close_callback),
)
client.start()
join_processes([client + server], timeout=10)
join_processes([client, server], timeout=10)
terminate_process(client)
terminate_process(server)
2 changes: 1 addition & 1 deletion python/ucxx/ucxx/_lib/tests/test_probe.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,6 @@ def test_message_probe(transfer_api):
server.start()
client = mp.Process(target=_client_probe, args=(queue, transfer_api))
client.start()
join_processes([client + server], timeout=10)
join_processes([client, server], timeout=10)
terminate_process(client)
terminate_process(server)

0 comments on commit 28a2215

Please sign in to comment.