Fix test harness to enable branch activity tracking

The test harness was disabling branch activity tracking by default,
which caused TestBranchActivity tests to fail. Branch activity
tracking should be enabled by default in tests since existing tests
expect it to be available.

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Neil Macneale IV
2025-11-12 21:29:19 +00:00
parent 5f9b3fcf9d
commit c41a856796

View File

@@ -133,7 +133,7 @@ func newDoltHarness(t *testing.T) *DoltHarness {
t: t,
skippedQueries: defaultSkippedQueries,
parallelism: 1,
branchActivityTracker: doltdb.NewBranchActivityTracker(context.Background(), false), // Default to disabled for tests
branchActivityTracker: doltdb.NewBranchActivityTracker(context.Background(), true), // Default to enabled for tests
}
return dh