Skip to content

Commit 140948f

Browse files
committed
Fix markdown validation tests
Signed-off-by: joshvanl <me@joshvanl.dev>
1 parent ac532b4 commit 140948f

File tree

3 files changed

+8
-12
lines changed

3 files changed

+8
-12
lines changed

examples/workflow-parallel/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,10 @@ name: Run Workflow
1313
output_match_mode: substring
1414
expected_stdout_lines:
1515
- '== APP == Workflow(s) and activities registered.'
16-
- 'work item listener started'
1716
- '== APP == Processing work item: 9'
1817
- '== APP == Work item 9 processed. Result: 18'
1918
- '== APP == Final result: 90'
20-
- '== APP == workflow status: COMPLETED'
19+
- '== APP == workflow status: ORCHESTRATION_STATUS_COMPLETED'
2120
- '== APP == workflow terminated'
2221
- '== APP == workflow purged'
2322
@@ -40,11 +39,10 @@ dapr run --app-id workflow-parallel \
4039

4140
```
4241
- '== APP == Workflow(s) and activities registered.'
43-
- 'work item listener started'
4442
- '== APP == Processing work item: 9'
4543
- '== APP == Work item 9 processed. Result: 18'
4644
- '== APP == Final result: 90'
47-
- '== APP == workflow status: COMPLETED'
45+
- '== APP == workflow status: ORCHESTRATION_STATUS_COMPLETED'
4846
- '== APP == workflow terminated'
4947
- '== APP == workflow purged'
5048
```

examples/workflow-taskexecutionid/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ name: Run Workflow
1313
output_match_mode: substring
1414
expected_stdout_lines:
1515
- '== APP == Workflow(s) and activities registered.'
16-
- 'work item listener started'
1716
- '== APP == RetryN 1'
1817
- '== APP == RetryN 2'
1918
- '== APP == RetryN 3'
@@ -22,7 +21,7 @@ expected_stdout_lines:
2221
- '== APP == RetryN 2'
2322
- '== APP == RetryN 3'
2423
- '== APP == RetryN 4'
25-
- '== APP == workflow status: COMPLETED'
24+
- '== APP == workflow status: ORCHESTRATION_STATUS_COMPLETED'
2625
- '== APP == workflow terminated'
2726
- '== APP == workflow purged'
2827
@@ -45,7 +44,6 @@ dapr run --app-id workflow-taskexecutionid \
4544

4645
```
4746
- '== APP == Workflow(s) and activities registered.'
48-
- 'work item listener started'
4947
- '== APP == RetryN 1'
5048
- '== APP == RetryN 2'
5149
- '== APP == RetryN 3'
@@ -54,7 +52,7 @@ dapr run --app-id workflow-taskexecutionid \
5452
- '== APP == RetryN 2'
5553
- '== APP == RetryN 3'
5654
- '== APP == RetryN 4'
57-
- '== APP == workflow status: COMPLETED'
55+
- '== APP == workflow status: ORCHESTRATION_STATUS_COMPLETED'
5856
- '== APP == workflow terminated'
5957
- '== APP == workflow purged'
6058
```

examples/workflow/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ expected_stdout_lines:
2424
- '== APP == workflow event raised'
2525
- '== APP == stage: 2'
2626
- '== APP == fail activity executions: 3'
27-
- '== APP == workflow status: COMPLETED'
27+
- '== APP == workflow status: ORCHESTRATION_STATUS_COMPLETED'
2828
- '== APP == workflow purged'
2929
- '== APP == stage: 2'
3030
- '== APP == workflow started with id: a7a4168d-3a1c-41da-8a4f-e7f6d9c718d9'
31-
- '== APP == workflow status: RUNNING'
31+
- '== APP == workflow status: ORCHESTRATION_STATUS_RUNNING'
3232
- '== APP == workflow terminated'
3333
- '== APP == workflow purged'
3434
- '== APP == workflow worker successfully shutdown'
@@ -61,15 +61,15 @@ dapr run --app-id workflow \
6161
- '== APP == stage: 1'
6262
- '== APP == workflow event raised'
6363
- '== APP == stage: 2'
64-
- '== APP == workflow status: COMPLETED'
64+
- '== APP == workflow status: ORCHESTRATION_STATUS_COMPLETED'
6565
- '== APP == workflow purged'
6666
- '== APP == stage: 2'
6767
- '== APP == workflow started with id: a7a4168d-3a1c-41da-8a4f-e7f6d9c718d9'
6868
- '== APP == workflow terminated'
6969
- '== APP == workflow purged'
7070
- '== APP == workflow client test'
7171
- '== APP == [wfclient] started workflow with id: a7a4168d-3a1c-41da-8a4f-e7f6d9c718d9'
72-
- '== APP == [wfclient] workflow status: RUNNING'
72+
- '== APP == [wfclient] workflow status: ORCHESTRATION_STATUS_RUNNING'
7373
- '== APP == [wfclient] stage: 1'
7474
- '== APP == [wfclient] event raised'
7575
- '== APP == [wfclient] stage: 2'

0 commit comments

Comments
 (0)