diff options
| author | 2026-03-28 18:01:38 +0000 | |
|---|---|---|
| committer | 2026-03-28 18:01:38 +0000 | |
| commit | 8c135d16610a9da49c0cd41220125c7a2a06a105 (patch) | |
| tree | b90f5bded6b81dbb9a08c55111224833c9c30292 /reachability/integration_test.go | |
| parent | reachability: Document contract (diff) | |
| signature | No signature | |
reachability: Don't have a separate New for commit graphs
Diffstat (limited to 'reachability/integration_test.go')
| -rw-r--r-- | reachability/integration_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reachability/integration_test.go b/reachability/integration_test.go index 4c57d14f..4e4b3918 100644 --- a/reachability/integration_test.go +++ b/reachability/integration_test.go @@ -249,7 +249,7 @@ func TestWalkOnPackedOnlyRepo(t *testing.T) { func openReachabilityFromTestRepo(t *testing.T, testRepo *testgit.TestRepo) *reachability.Reachability { t.Helper() - return reachability.New(testRepo.OpenObjectStore(t)) + return reachability.New(testRepo.OpenObjectStore(t), nil) } func oidSetFromSeq(seq func(func(objectid.ObjectID) bool)) map[objectid.ObjectID]struct{} { |
