File tree 1 file changed +2
-2
lines changed
Core/Cleipnir.ResilientFunctions.Tests/TestTemplates/RFunctionTests 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ protected async Task ParentCanWaitForChildAction(Task<IFunctionStore> storeTask)
413
413
inner : Task ( string param ) => child . Schedule ( "SomeChildInstance#1" , param ) . Completion ( )
414
414
) ;
415
415
416
- await parent . Schedule ( parentFunctionId . Instance . Value , param : "hello" ) . Completion ( maxWait : TimeSpan . FromSeconds ( 5 ) ) ;
416
+ await parent . Schedule ( parentFunctionId . Instance . Value , param : "hello" ) . Completion ( maxWait : TimeSpan . FromSeconds ( 100 ) ) ;
417
417
unhandledExceptionHandler . ShouldNotHaveExceptions ( ) ;
418
418
}
419
419
@@ -437,7 +437,7 @@ protected async Task ParentCanWaitForFailedChildAction(Task<IFunctionStore> stor
437
437
) ;
438
438
439
439
await Should . ThrowAsync < FatalWorkflowException > (
440
- ( ) => parent . Schedule ( parentFunctionId . Instance . Value , param : "hello" ) . Completion ( maxWait : TimeSpan . FromSeconds ( 5 ) )
440
+ ( ) => parent . Schedule ( parentFunctionId . Instance . Value , param : "hello" ) . Completion ( maxWait : TimeSpan . FromSeconds ( 100 ) )
441
441
) ;
442
442
443
443
unhandledExceptionHandler . ThrownExceptions . ShouldNotBeEmpty ( ) ;
You can’t perform that action at this time.
0 commit comments