# Conflicts:
#	cmd/bd/duplicates_test.go
This commit is contained in:
Steve Yegge
2025-11-21 16:15:18 -05:00
2 changed files with 1 additions and 10 deletions

View File

@@ -2,6 +2,7 @@ package main
import (
"context"
"path/filepath"
"testing"
"github.com/steveyegge/beads/internal/types"

View File

@@ -16,11 +16,6 @@ func TestEpicCommand(t *testing.T) {
sqliteStore := newTestStore(t, testDB)
ctx := context.Background()
// Set issue_prefix
if err := sqliteStore.SetConfig(ctx, "issue_prefix", "test"); err != nil {
t.Fatalf("Failed to set issue_prefix: %v", err)
}
// Create an epic with children
epic := &types.Issue{
ID: "test-epic-1",
@@ -138,11 +133,6 @@ func TestEpicEligibleForClose(t *testing.T) {
sqliteStore := newTestStore(t, testDB)
ctx := context.Background()
// Set issue_prefix
if err := sqliteStore.SetConfig(ctx, "issue_prefix", "test"); err != nil {
t.Fatalf("Failed to set issue_prefix: %v", err)
}
// Create an epic where all children are closed
epic := &types.Issue{
ID: "test-epic-2",