From f63203cb0a1ed9c1aa74d3608836e3899d8a12d5 Mon Sep 17 00:00:00 2001 From: Ophestra Date: Wed, 13 May 2026 16:16:37 +0900 Subject: internal/pkg: populate substitute status These are not created when taking the fast path, but should be inherited from the alternative. Signed-off-by: Ophestra --- internal/pkg/pkg_test.go | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'internal/pkg/pkg_test.go') diff --git a/internal/pkg/pkg_test.go b/internal/pkg/pkg_test.go index 9d6757c7..96eda8ad 100644 --- a/internal/pkg/pkg_test.go +++ b/internal/pkg/pkg_test.go @@ -1059,8 +1059,14 @@ func TestCache(t *testing.T) { "_EmV5nsYZ2UWHgRmLDMU8i-rJWDx-kv5_1pFrzQI7vMMCM5mAXivO8UZtVfOqMR_", ), want, nil}, }) + } + if dents, err := os.ReadDir(base.Append("status").String()); err != nil { + t.Fatal(err) + } else if len(dents) > 0 { + t.Errorf("ReadDir: %v", dents) } + }, expectsFS{ ".": {Mode: fs.ModeDir | 0700}, -- cgit v1.3.1