Skip to content

Commit

Permalink
Fix unit test, restore main dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
KacperMalachowski committed Dec 3, 2024
1 parent c6bb70d commit 494778f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/resolve/resolve_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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/release-2.20/LICENCE", testDir)
file, err := File("https://raw.githubusercontent.com/kyma-project/cli/main/LICENSE", testDir)
assert.NoError(t, err)
assert.Equal(t, filepath.Join(testDir, "LICENCE"), file, "Remote files should be copied to the dst-folder")
})
Expand Down

0 comments on commit 494778f

Please sign in to comment.