Skip to content

Commit

Permalink
Fix test_print_to_correct_cell_from_child_thread (#1312)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart authored Dec 20, 2024
1 parent b11d42c commit 6f2bc84
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ def child_target():
def parent_target():
sleep({interval})
Thread(target=child_target).start()
thread = Thread(target=child_target)
thread.start()
thread.join()
Thread(target=parent_target).start()
"""
Expand Down

0 comments on commit 6f2bc84

Please sign in to comment.