File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/toolbox-core/tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ def sync_client_environment():
47
47
if original_loop and original_loop .is_running ():
48
48
original_loop .call_soon_threadsafe (original_loop .stop )
49
49
if original_thread and original_thread .is_alive ():
50
- original_thread .join (timeout = 5 )
50
+ original_thread .join ()
51
51
ToolboxSyncClient ._ToolboxSyncClient__loop = None
52
52
ToolboxSyncClient ._ToolboxSyncClient__thread = None
53
53
@@ -63,7 +63,7 @@ def sync_client_environment():
63
63
if test_loop and test_loop .is_running ():
64
64
test_loop .call_soon_threadsafe (test_loop .stop )
65
65
if test_thread and test_thread .is_alive ():
66
- test_thread .join (timeout = 5 )
66
+ test_thread .join ()
67
67
68
68
# Explicitly set to None to ensure a clean state for the next fixture use/test.
69
69
ToolboxSyncClient ._ToolboxSyncClient__loop = None
You can’t perform that action at this time.
0 commit comments