Skip to content

Commit bc75196

Browse files
committed
-
1 parent 6853f39 commit bc75196

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

tests/conftest.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,11 +174,9 @@ class MockKernel(KernelMixin, Kernel): # type:ignore
174174
def __init__(self, *args, **kwargs):
175175
self._initialize()
176176
self.shell = MagicMock()
177-
#self.shell_stop = Event()
178-
#self.control_stop = Event()
177+
self.shell_stop = Event()
178+
self.control_stop = Event()
179179
super().__init__(*args, **kwargs)
180-
print(f"{self.shell_stop=}")
181-
print(f"{self.control_stop=}")
182180

183181
async def do_execute(
184182
self, code, silent, store_history=True, user_expressions=None, allow_stdin=False

0 commit comments

Comments
 (0)