Skip to content

Commit 992f138

Browse files
committed
chore: Remove unnecessary timeout in sync client tests
1 parent 2a2b3fc commit 992f138

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/toolbox-core/tests/test_sync_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def sync_client_environment():
4747
if original_loop and original_loop.is_running():
4848
original_loop.call_soon_threadsafe(original_loop.stop)
4949
if original_thread and original_thread.is_alive():
50-
original_thread.join(timeout=5)
50+
original_thread.join()
5151
ToolboxSyncClient._ToolboxSyncClient__loop = None
5252
ToolboxSyncClient._ToolboxSyncClient__thread = None
5353

@@ -63,7 +63,7 @@ def sync_client_environment():
6363
if test_loop and test_loop.is_running():
6464
test_loop.call_soon_threadsafe(test_loop.stop)
6565
if test_thread and test_thread.is_alive():
66-
test_thread.join(timeout=5)
66+
test_thread.join()
6767

6868
# Explicitly set to None to ensure a clean state for the next fixture use/test.
6969
ToolboxSyncClient._ToolboxSyncClient__loop = None

0 commit comments

Comments
 (0)