aboutsummaryrefslogtreecommitdiff
path: root/reachability/integration_test.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-28 18:01:38 +0000
committerGravatar Runxi Yu2026-03-28 18:01:38 +0000
commit8c135d16610a9da49c0cd41220125c7a2a06a105 (patch)
treeb90f5bded6b81dbb9a08c55111224833c9c30292 /reachability/integration_test.go
parentreachability: Document contract (diff)
signatureNo signature
reachability: Don't have a separate New for commit graphs
Diffstat (limited to 'reachability/integration_test.go')
-rw-r--r--reachability/integration_test.go2
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{} {