diff options
| author | 2026-03-12 02:12:17 +0800 | |
|---|---|---|
| committer | 2026-03-12 02:12:17 +0800 | |
| commit | dc7c74b9b0c6fe66bad9119b2d29e00f70a7cd3b (patch) | |
| tree | 80b60510586709f367fd4abe77ebf96b1141c0e4 /refstore/files/transaction_dirs_test.go | |
| parent | refstore: s/ResolveFully/ResolveToDetached/g (diff) | |
| signature | No signature | |
refstore: More fixes on ResolveToDetached
Diffstat (limited to 'refstore/files/transaction_dirs_test.go')
| -rw-r--r-- | refstore/files/transaction_dirs_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/refstore/files/transaction_dirs_test.go b/refstore/files/transaction_dirs_test.go index 09dc29fd..08d07197 100644 --- a/refstore/files/transaction_dirs_test.go +++ b/refstore/files/transaction_dirs_test.go @@ -59,7 +59,7 @@ func TestFilesTransactionEmptyDirectoriesDoNotBlock(t *testing.T) { got, err := store.ResolveToDetached("refs/e-update/foo") if err != nil { - t.Fatalf("ResolveFully(updated foo): %v", err) + t.Fatalf("ResolveToDetached(updated foo): %v", err) } if got.ID != newID { @@ -86,7 +86,7 @@ func TestFilesTransactionEmptyDirectoriesDoNotBlock(t *testing.T) { got, err = store.ResolveToDetached("refs/e-create/foo") if err != nil { - t.Fatalf("ResolveFully(created foo): %v", err) + t.Fatalf("ResolveToDetached(created foo): %v", err) } if got.ID != oldID { |
