We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16f7a04 commit 801ce8bCopy full SHA for 801ce8b
tests/worker/test_workflow.py
@@ -6181,7 +6181,7 @@ async def _do_first_completion_command_is_honored_test(
6181
except WorkflowFailureError as err:
6182
if main_workflow_returns_before_signal_completions:
6183
raise RuntimeError(
6184
- "Expected no error due to main workflow coroutine returning first"
+ f"Expected no error due to main workflow coroutine returning first, but got error:\n{err.__class__}\n{err.__cause__.__class__}\n{err.__cause__}"
6185
)
6186
else:
6187
assert str(err.cause).startswith("Client should see this error")
0 commit comments