From a7e8107b5a5447ffa161fe0c5b0e868a047c653b Mon Sep 17 00:00:00 2001 From: Anis Khan <2815766+aniskhan001@users.noreply.github.com> Date: Wed, 12 Aug 2026 17:37:41 +0200 Subject: [PATCH] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Anis Khan <2815766+aniskhan001@users.noreply.github.com> --- pkg/downloader/manager_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/downloader/manager_test.go b/pkg/downloader/manager_test.go index 163958f47..2d698aa68 100644 --- a/pkg/downloader/manager_test.go +++ b/pkg/downloader/manager_test.go @@ -297,7 +297,7 @@ func TestDownloadAllConcurrent(t *testing.T) { } _, err = os.Stat(filepath.Join(chartPath, "charts", "signtest-0.1.0.tgz")) - require.NotErrorIs(t, err, fs.ErrNotExist) + require.NoError(t, err) // No leftover tmpcharts-* directories from any of the concurrent calls. entries, err := os.ReadDir(chartPath)