From 18d93c63ed33a34edd4d359fbfcea7d5792adc49 Mon Sep 17 00:00:00 2001 From: Ryan Lettieri <67934986+RyanLettieri@users.noreply.github.com> Date: Fri, 14 Jul 2023 12:49:18 -0600 Subject: [PATCH] Changing error message in wf test to match runtime (#584) Signed-off-by: Ryan Lettieri --- examples/demo_workflow/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/demo_workflow/app.py b/examples/demo_workflow/app.py index cff68f8d..81ed2f18 100644 --- a/examples/demo_workflow/app.py +++ b/examples/demo_workflow/app.py @@ -27,7 +27,7 @@ workflowOptions["task_queue"] = "testQueue" eventName = "event1" eventData = "eventData" -nonExistentIDError = "No such instance exists" +nonExistentIDError = "no such instance exists" def hello_world_wf(ctx: DaprWorkflowContext, input): print(f'{input}')