diff options
| author | 2026-01-30 18:12:21 +0100 | |
|---|---|---|
| committer | 2026-01-30 18:12:21 +0100 | |
| commit | b7e462e002290f940eab0bca39993fabfc8037c4 (patch) | |
| tree | 70caea228d79506f5cdb31cd6e19c2236f35a25e | |
| parent | README: Clarify pack/delta/thin features (diff) | |
| signature | No signature | |
repo: Fix test, Fatal -> Fatalf
| -rw-r--r-- | repo_current_test.go | 2 |
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() }() |
