aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-01-30 18:12:21 +0100
committerGravatar Runxi Yu2026-01-30 18:12:21 +0100
commitb7e462e002290f940eab0bca39993fabfc8037c4 (patch)
tree70caea228d79506f5cdb31cd6e19c2236f35a25e
parentREADME: Clarify pack/delta/thin features (diff)
signatureNo signature
repo: Fix test, Fatal -> Fatalf
-rw-r--r--repo_current_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/repo_current_test.go b/repo_current_test.go
index 5155dfb5..e7cab8e6 100644
--- a/repo_current_test.go
+++ b/repo_current_test.go
@@ -14,7 +14,7 @@ func TestCurrentRepoDepthFirstEnumeration(t *testing.T) {
repo, err := OpenRepository(gitDir)
if err != nil {
- t.Fatal("failed to open current .git directory: %v", err)
+ t.Fatalf("failed to open current .git directory: %v", err)
}
defer func() { _ = repo.Close() }()