chore: remove placeholder comment in test

Remove `// See: https://github.com/steveyegge/beads/issues/XXX`
placeholder that was left in the regression test from PR #1131.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
emma
2026-01-17 02:51:06 -08:00
committed by Steve Yegge
parent c220542926
commit e60e8f1823

View File

@@ -148,7 +148,6 @@ func TestDaemonAutostart_AcquireStartLock_CreatesMissingDir(t *testing.T) {
func TestDaemonAutostart_AcquireStartLock_FailsWhenRemoveFails(t *testing.T) { func TestDaemonAutostart_AcquireStartLock_FailsWhenRemoveFails(t *testing.T) {
// This test verifies that acquireStartLock returns false (instead of // This test verifies that acquireStartLock returns false (instead of
// recursing infinitely) when os.Remove fails on a stale lock file. // recursing infinitely) when os.Remove fails on a stale lock file.
// See: https://github.com/steveyegge/beads/issues/XXX
oldRemove := removeFileFn oldRemove := removeFileFn
defer func() { removeFileFn = oldRemove }() defer func() { removeFileFn = oldRemove }()