File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Stores/StressTests/StressTests Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public static async Task<TestResult> Perform(IEngine helper)
29
29
"SuspensionTest" ,
30
30
async Task ( workflow ) =>
31
31
{
32
- await workflow . Messages . First ( TimeSpan . Zero ) ;
32
+ await workflow . Messages . First ( maxWait : TimeSpan . Zero ) ;
33
33
await workflow . Effect . Capture ( "Effect#1" , ( ) => Guid . NewGuid ( ) ) ;
34
34
}
35
35
) ;
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public static async Task<TestResult> Perform(IEngine helper)
29
29
"SuspensionTest" ,
30
30
async Task ( string param , Workflow workflow ) =>
31
31
{
32
- await workflow . Messages . First ( TimeSpan . Zero ) ;
32
+ await workflow . Messages . First ( maxWait : TimeSpan . Zero ) ;
33
33
await workflow . Effect . Capture ( ( ) => param ) ;
34
34
}
35
35
) ;
You can’t perform that action at this time.
0 commit comments