diff options
| author | 2026-06-07 09:35:38 +0000 | |
|---|---|---|
| committer | 2026-06-07 09:35:38 +0000 | |
| commit | 37f86979eefddb653e90b6af700b976dd3463417 (patch) | |
| tree | b01b30f04ace10eb198284094ece535e18ef74f4 /internal/testgit/fsck.go | |
| parent | REFACTOR: object/commit is done (diff) | |
| signature | No signature | |
internal/testgit: Unexport Run and Command
Diffstat (limited to 'internal/testgit/fsck.go')
| -rw-r--r-- | internal/testgit/fsck.go | 2 |
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) } |
