Skip to content

Commit c24897d

Browse files
committed
fix test
Signed-off-by: Fabian Martinez <[email protected]>
1 parent ff031e4 commit c24897d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/orchestration.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ describe("Durable Functions", () => {
8383
expect(state?.runtimeStatus).toEqual(OrchestrationStatus.ORCHESTRATION_STATUS_COMPLETED);
8484
expect(state?.serializedInput).toEqual(JSON.stringify(1));
8585
expect(state?.serializedOutput).toEqual(JSON.stringify([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]));
86-
expect(state?.serializedCustomStatus).toEqual(JSON.stringify("foobaz"));
86+
expect(state?.serializedCustomStatus).toEqual("foobaz");
8787
}, 31000);
8888

8989
it("should be able to run fan-out/fan-in", async () => {

0 commit comments

Comments
 (0)