fix: remove stale git-commit assertion in worktree test after commit_docs removal

The test asserted that captureIntegrationBranch commits metadata to git,
but #1258 intentionally stopped committing .gsd/ artifacts.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Lex Christopherson 2026-03-18 15:26:04 -06:00
parent d4d3938e94
commit 69efb57355

View file

@ -108,10 +108,7 @@ async function main(): Promise<void> {
assertEq(readIntegrationBranch(repo, "M001"), "f-123-thing",
"captureIntegrationBranch records the current branch");
// Verify it was committed (not just written to disk)
const logOut = run("git log --oneline -1", repo);
assertTrue(logOut.includes("integration branch"), "metadata committed to git");
// .gsd/ metadata is written to disk only (not committed) since commit_docs removal
rmSync(repo, { recursive: true, force: true });
}