From c6bb70deeef327118b1cce2c9307e4f37113a557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20Ma=C5=82achowski?= Date: Tue, 3 Dec 2024 17:09:49 +0100 Subject: [PATCH] Fix unit test --- internal/resolve/resolve_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/resolve/resolve_test.go b/internal/resolve/resolve_test.go index 196c29669..8e04ba673 100644 --- a/internal/resolve/resolve_test.go +++ b/internal/resolve/resolve_test.go @@ -33,7 +33,7 @@ func Test_GetFile(t *testing.T) { assert.Equal(t, currFile, file, "Local files should not be copied to the dst-folder") }) t.Run("Retrieve remote file", func(t *testing.T) { - file, err := File("https://raw.githubusercontent.com/kyma-project/cli/main/LICENCE", testDir) + file, err := File("https://raw.githubusercontent.com/kyma-project/cli/release-2.20/LICENCE", testDir) assert.NoError(t, err) assert.Equal(t, filepath.Join(testDir, "LICENCE"), file, "Remote files should be copied to the dst-folder") })