Skip to content

Commit caed0ff

Browse files
committed
Try increasing timeout
1 parent cf5b158 commit caed0ff

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/worker/test_workflow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5285,7 +5285,9 @@ async def test_unfinished_handlers_cause_exceptions_in_test_suite(self):
52855285
)
52865286
)
52875287
await assert_eq_eventually(
5288-
True, partial(self._workflow_task_failed, workflow_id=(await handle).id)
5288+
True,
5289+
partial(self._workflow_task_failed, workflow_id=(await handle).id),
5290+
timeout=timedelta(seconds=20),
52895291
)
52905292

52915293
async def _workflow_task_failed(self, workflow_id: str) -> bool:

0 commit comments

Comments
 (0)