From 0c39597e9206a8daa7f6904378a3201f40867c84 Mon Sep 17 00:00:00 2001 From: Rishi Tiwari Date: Thu, 28 May 2026 12:48:51 +0530 Subject: [PATCH] Change return method from getSucceeded to getResults --- examples/typescript/testing/examples/parallel-workflow.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/typescript/testing/examples/parallel-workflow.ts b/examples/typescript/testing/examples/parallel-workflow.ts index 826a472..58ef6aa 100644 --- a/examples/typescript/testing/examples/parallel-workflow.ts +++ b/examples/typescript/testing/examples/parallel-workflow.ts @@ -8,7 +8,7 @@ const handler = withDurableExecution(async (event: unknown, context: DurableCont async (ctx) => await ctx.step("fetch-b", () => "data-b"), async (ctx) => await ctx.step("fetch-c", () => "data-c"), ]); - return results.getSucceeded(); + return results.getResults(); }); let runner: LocalDurableTestRunner;