Skip to content

Commit

Permalink
Review
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Dec 20, 2024
1 parent f6e159b commit 41b31c5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,10 @@ def child_target():
sleep({interval})
def parent_target():
Thread(target=child_target).start()
sleep({interval * iterations})
sleep({interval})
thread = Thread(target=child_target)
thread.start()
thread.join()
Thread(target=parent_target).start()
"""
Expand Down

0 comments on commit 41b31c5

Please sign in to comment.