fix: replace string(rune()) with strconv.Itoa in tests (bd-fmc)
Also updated CONFIG.md to clarify mass delete threshold requires >5 issues (bd-in6).
The string(rune('0'+i)) pattern produces incorrect characters when i >= 10.
Changed to strconv.Itoa(i) for reliable conversion.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -2,6 +2,7 @@ package sqlite
|
||||
|
||||
import (
|
||||
"context"
|
||||
"strconv"
|
||||
"testing"
|
||||
|
||||
"github.com/steveyegge/beads/internal/types"
|
||||
@@ -415,7 +416,7 @@ func TestDetectCyclesLongCycle(t *testing.T) {
|
||||
issues := make([]*types.Issue, cycleLength)
|
||||
for i := 0; i < cycleLength; i++ {
|
||||
issues[i] = &types.Issue{
|
||||
Title: "Issue " + string(rune('0'+i)),
|
||||
Title: "Issue " + strconv.Itoa(i),
|
||||
Status: types.StatusOpen,
|
||||
Priority: 1,
|
||||
IssueType: types.TypeTask,
|
||||
|
||||
Reference in New Issue
Block a user