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", () => {
240240 expect ( failResult . attemptStatus ) . toBe ( "RETRY_IMMEDIATELY" ) ;
241241 expect ( failResult . snapshot . executionStatus ) . toBe ( "EXECUTING" ) ;
242242 expect ( failResult . run . attemptNumber ) . toBe ( 1 ) ;
243- expect ( failResult . run . status ) . toBe ( "RETRYING_AFTER_FAILURE " ) ;
243+ expect ( failResult . run . status ) . toBe ( "EXECUTING " ) ;
244244
245245 const executionData2 = await engine . getRunExecutionData ( { runId : run . id } ) ;
246246 assertNonNullable ( executionData2 ) ;
247247 expect ( executionData2 . snapshot . executionStatus ) . toBe ( "EXECUTING" ) ;
248248 expect ( executionData2 . run . attemptNumber ) . toBe ( 1 ) ;
249- expect ( executionData2 . run . status ) . toBe ( "RETRYING_AFTER_FAILURE " ) ;
249+ expect ( executionData2 . run . status ) . toBe ( "EXECUTING " ) ;
250250 expect ( executionData2 . completedWaitpoints . length ) . toBe ( 0 ) ;
251251
252252 //check there are no waitpoints blocking the parent run
You can’t perform that action at this time.
0 commit comments