Fix test compilation errors: add context.Background() to sqlite.New() calls

Updated all test files to pass context.Background() as the first parameter
to sqlite.New() calls to match the updated function signature.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-11-21 14:56:46 -05:00
parent c9207fce63
commit 3a0446c431
7 changed files with 17 additions and 17 deletions

View File

@@ -16,7 +16,7 @@ import (
// TestConcurrentExternalRefUpdates tests concurrent updates to same external_ref with different timestamps
// This is a slow integration test that verifies no deadlocks occur
func TestConcurrentExternalRefUpdates(t *testing.T) {
store, err := sqlite.New(":memory:")
store, err := sqlite.New(context.Background(), ":memory:")
if err != nil {
t.Fatalf("Failed to create store: %v", err)
}