File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
AzureFunctions.PowerShell.Durable.SDK.E2E
durableApp/SimpleOrchestrator Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,8 @@ await ValidateDurableWorkflowResults(
84
84
{
85
85
Assert . Equal ( "Completed" , ( string ) finalStatusResponseBody . runtimeStatus ) ;
86
86
Assert . Equal ( "Hello Tokyo" , finalStatusResponseBody . output [ 0 ] . ToString ( ) ) ;
87
- Assert . Equal ( "Hello Seattle" , finalStatusResponseBody . output [ 1 ] . ToString ( ) ) ;
87
+ Assert . Equal ( "Context.Version: 1.0" , finalStatusResponseBody . output [ 1 ] . ToString ( ) ) ;
88
+ Assert . Equal ( "Hello Seattle" , finalStatusResponseBody . output [ 2 ] . ToString ( ) ) ;
88
89
} ) ;
89
90
}
90
91
Original file line number Diff line number Diff line change @@ -7,3 +7,5 @@ $ErrorActionPreference = 'Stop'
7
7
$output = Invoke-DurableActivity - FunctionName " Hello" - Input " Tokyo"
8
8
9
9
$output
10
+
11
+ " Context.Version: $ ( $Context.Version ) "
You can’t perform that action at this time.
0 commit comments