We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26502e0 commit 03e41feCopy full SHA for 03e41fe
tests/hello/hello_update_test.py
@@ -6,7 +6,7 @@
6
from hello.hello_update import GreetingWorkflow
7
8
9
-async def test_signal_workflow(client: Client):
+async def test_update_workflow(client: Client):
10
task_queue_name = str(uuid.uuid4())
11
async with Worker(client, task_queue=task_queue_name, workflows=[GreetingWorkflow]):
12
handle = await client.start_workflow(
@@ -19,4 +19,5 @@ async def test_signal_workflow(client: Client):
19
GreetingWorkflow.update_workflow_status
20
)
21
assert "Workflow status updated" == update_result
22
+ assert "Hello, World!" == (await handle.result())
23
assert WorkflowExecutionStatus.COMPLETED == (await handle.describe()).status
0 commit comments