diff options
| author | 2026-02-20 22:59:14 +0800 | |
|---|---|---|
| committer | 2026-02-20 22:59:14 +0800 | |
| commit | d88c8e20aebd9408df0306e97dffc2896950342d (patch) | |
| tree | 8e137f37fdd9ea673bd622a2b9c9873cd89278fb /internal/testgit/repo_properties.go | |
| parent | objectid: Use _test package for tests (diff) | |
| signature | No signature | |
*: Replace repo with testRepo
Diffstat (limited to 'internal/testgit/repo_properties.go')
| -rw-r--r-- | internal/testgit/repo_properties.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/internal/testgit/repo_properties.go b/internal/testgit/repo_properties.go index a25c329c..47123ee8 100644 --- a/internal/testgit/repo_properties.go +++ b/internal/testgit/repo_properties.go @@ -3,11 +3,11 @@ package testgit import "codeberg.org/lindenii/furgit/objectid" // Dir returns the repository directory path. -func (repo *TestRepo) Dir() string { - return repo.dir +func (testRepo *TestRepo) Dir() string { + return testRepo.dir } // Algorithm returns the object ID algorithm configured for this repository. -func (repo *TestRepo) Algorithm() objectid.Algorithm { - return repo.algo +func (testRepo *TestRepo) Algorithm() objectid.Algorithm { + return testRepo.algo } |
