Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Dec 17, 2024
1 parent 7f11923 commit 32253f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def test_simple_print():
def test_print_to_correct_cell_from_thread():
"""should print to the cell that spawned the thread, not a subsequently run cell"""
iterations = 5
interval = 0.25
interval = 1
code = f"""\
from threading import Thread
from time import sleep
Expand Down Expand Up @@ -94,7 +94,7 @@ def thread_target():
def test_print_to_correct_cell_from_child_thread():
"""should print to the cell that spawned the thread, not a subsequently run cell"""
iterations = 5
interval = 0.25
interval = 1
code = f"""\
from threading import Thread
from time import sleep
Expand Down Expand Up @@ -130,7 +130,7 @@ def parent_target():
def test_print_to_correct_cell_from_asyncio():
"""should print to the cell that scheduled the task, not a subsequently run cell"""
iterations = 5
interval = 0.25
interval = 1
code = f"""\
import asyncio
Expand Down

0 comments on commit 32253f8

Please sign in to comment.