mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-06 00:39:40 -06:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user