From 82868e1648b323269fea1a8d0fb5dc987775a981 Mon Sep 17 00:00:00 2001 From: Lex Christopherson Date: Sat, 21 Mar 2026 10:36:47 -0600 Subject: [PATCH] fix: update integration test to match dependency-aware dispatch guard wording Slices with declared depends:[S01] now get "dependency slice" message instead of "earlier slice" from the dispatch guard (PR #1770). Co-Authored-By: Claude Opus 4.6 (1M context) --- .../extensions/gsd/tests/integration-mixed-milestones.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/resources/extensions/gsd/tests/integration-mixed-milestones.test.ts b/src/resources/extensions/gsd/tests/integration-mixed-milestones.test.ts index 1732dd9cb..ca12428c9 100644 --- a/src/resources/extensions/gsd/tests/integration-mixed-milestones.test.ts +++ b/src/resources/extensions/gsd/tests/integration-mixed-milestones.test.ts @@ -419,7 +419,7 @@ Built the legacy feature successfully. // Blocker: trying to dispatch M002-abc123/S02 when S01 is incomplete assertMatch( getPriorSliceCompletionBlocker(base, 'main', 'execute-task', 'M002-abc123/S02/T01') ?? '', - /earlier slice M002-abc123\/S01 is not complete/, + /dependency slice M002-abc123\/S01 is not complete/, 'G5: blocks M002-abc123/S02 when S01 incomplete', ); @@ -478,7 +478,7 @@ Built the legacy feature successfully. // Check that S02 of M002-abc123 is still blocked by its own S01 assertMatch( getPriorSliceCompletionBlocker(base, 'main', 'execute-task', 'M002-abc123/S02/T01') ?? '', - /earlier slice M002-abc123\/S01 is not complete/, + /dependency slice M002-abc123\/S01 is not complete/, 'G5: intra-milestone blocker still works in mixed-format context', ); } finally {