aboutsummaryrefslogtreecommitdiff
path: root/internal/testgit/fsck.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-06-07 09:35:38 +0000
committerGravatar Runxi Yu2026-06-07 09:35:38 +0000
commit37f86979eefddb653e90b6af700b976dd3463417 (patch)
treeb01b30f04ace10eb198284094ece535e18ef74f4 /internal/testgit/fsck.go
parentREFACTOR: object/commit is done (diff)
signatureNo signature
internal/testgit: Unexport Run and Command
Diffstat (limited to 'internal/testgit/fsck.go')
-rw-r--r--internal/testgit/fsck.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/testgit/fsck.go b/internal/testgit/fsck.go
index a1c48026..d32fc3a9 100644
--- a/internal/testgit/fsck.go
+++ b/internal/testgit/fsck.go
@@ -32,7 +32,7 @@ func (repo *Repo) Fsck(tb testing.TB, opts FsckOptions, objects ...id.ObjectID)
args = append(args, object.String())
}
- _, err := repo.Run(tb, nil, "git", args...)
+ _, err := repo.run(tb, nil, "git", args...)
if err != nil {
return fmt.Errorf("fsck: %w", err)
}