Skip to content

Commit 1d6f663

Browse files
committed
fix(executor): use correct LOOP_CONTINUE_ALT constant in test
1 parent cd5af3d commit 1d6f663

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/sim/executor/execution/edge-manager.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,7 +1389,7 @@ describe('EdgeManager', () => {
13891389
const nodeBNode = createMockNode(nodeBId, [{ target: sentinelEndId }], [conditionId])
13901390
const sentinelEndNode = createMockNode(
13911391
sentinelEndId,
1392-
[{ target: sentinelStartId, sourceHandle: 'loop-continue' }], // Alternative handle
1392+
[{ target: sentinelStartId, sourceHandle: 'loop-continue-source' }],
13931393
[nodeAId, nodeBId]
13941394
)
13951395

@@ -1408,7 +1408,7 @@ describe('EdgeManager', () => {
14081408
edgeManager.processOutgoingEdges(nodeBNode, {})
14091409

14101410
const ready = edgeManager.processOutgoingEdges(sentinelEndNode, {
1411-
selectedRoute: 'loop-continue',
1411+
selectedRoute: 'loop_continue',
14121412
})
14131413
expect(ready).toContain(sentinelStartId)
14141414
})

0 commit comments

Comments
 (0)