aboutsummaryrefslogtreecommitdiff
path: root/internal/testgit/repo.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-02-20 22:52:58 +0800
committerGravatar Runxi Yu2026-02-20 22:52:58 +0800
commitf49c95662bda1f2c337dbe872644afa1ca5cbbec (patch)
tree502b399c86f0093b50ad5fc80b73f75f4c614733 /internal/testgit/repo.go
parentconfig: Import from the previous version and fix test harnesses (diff)
signatureNo signature
objectid: Rename from oid
Diffstat (limited to 'internal/testgit/repo.go')
-rw-r--r--internal/testgit/repo.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/testgit/repo.go b/internal/testgit/repo.go
index c2d8b088..7118aa7a 100644
--- a/internal/testgit/repo.go
+++ b/internal/testgit/repo.go
@@ -1,10 +1,10 @@
package testgit
-import "codeberg.org/lindenii/furgit/oid"
+import "codeberg.org/lindenii/furgit/objectid"
// TestRepo is a temporary git repository harness for integration tests.
type TestRepo struct {
dir string
- algo oid.Algorithm
+ algo objectid.Algorithm
env []string
}