diff options
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 } |
