File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
internal-packages/run-engine/src/engine/tests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -240,13 +240,13 @@ describe("RunEngine Waitpoints", () => {
240
240
expect ( failResult . attemptStatus ) . toBe ( "RETRY_IMMEDIATELY" ) ;
241
241
expect ( failResult . snapshot . executionStatus ) . toBe ( "EXECUTING" ) ;
242
242
expect ( failResult . run . attemptNumber ) . toBe ( 1 ) ;
243
- expect ( failResult . run . status ) . toBe ( "RETRYING_AFTER_FAILURE " ) ;
243
+ expect ( failResult . run . status ) . toBe ( "EXECUTING " ) ;
244
244
245
245
const executionData2 = await engine . getRunExecutionData ( { runId : run . id } ) ;
246
246
assertNonNullable ( executionData2 ) ;
247
247
expect ( executionData2 . snapshot . executionStatus ) . toBe ( "EXECUTING" ) ;
248
248
expect ( executionData2 . run . attemptNumber ) . toBe ( 1 ) ;
249
- expect ( executionData2 . run . status ) . toBe ( "RETRYING_AFTER_FAILURE " ) ;
249
+ expect ( executionData2 . run . status ) . toBe ( "EXECUTING " ) ;
250
250
expect ( executionData2 . completedWaitpoints . length ) . toBe ( 0 ) ;
251
251
252
252
//check there are no waitpoints blocking the parent run
You can’t perform that action at this time.
0 commit comments