Fix #328: Remove duplicate computeJSONLHash declaration
The function was declared twice: - Line 80: New version (simpler, no error wrapping) - Line 390: Old version (with error wrapping) This caused compilation failure in CI. Removed the old declaration at line 390. Also fixed integrity_content_test.go to pass context.Context to sqlite.New() as required by the updated API. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -28,7 +28,7 @@ func TestContentBasedComparison(t *testing.T) {
|
||||
jsonlPath := filepath.Join(beadsDir, "issues.jsonl")
|
||||
|
||||
// Create and populate database
|
||||
localStore, err := sqlite.New(dbPath)
|
||||
localStore, err := sqlite.New(ctx, dbPath)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to create store: %v", err)
|
||||
}
|
||||
@@ -180,7 +180,7 @@ func TestContentHashComputation(t *testing.T) {
|
||||
jsonlPath := filepath.Join(beadsDir, "issues.jsonl")
|
||||
|
||||
// Create and populate database
|
||||
localStore, err := sqlite.New(dbPath)
|
||||
localStore, err := sqlite.New(ctx, dbPath)
|
||||
if err != nil {
|
||||
t.Fatalf("Failed to create store: %v", err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user