From b9012618f062bc77b0ac96850a7416e4abd19e66 Mon Sep 17 00:00:00 2001 From: Tom Kennedy Date: Mon, 2 Oct 2023 16:03:44 -0400 Subject: [PATCH] Fix typo in unit tests Signed-off-by: Tom Kennedy --- pkg/git/fetch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/git/fetch_test.go b/pkg/git/fetch_test.go index 6695372b5..f038101f7 100644 --- a/pkg/git/fetch_test.go +++ b/pkg/git/fetch_test.go @@ -93,7 +93,7 @@ func testGitCheckout(t *testing.T, when spec.G, it spec.S) { err := fetcher.Fetch(testDir, "https://github.com/pivotal/kpack", "main", metadataDir) require.NoError(t, err) - fileInfo, err := os.Lstat(path.Join(testDir, "hack", "apply.sh")) + fileInfo, err := os.Lstat(path.Join(testDir, "hack", "local.sh")) require.NoError(t, err) require.True(t, isExecutableByAll(fileInfo.Mode()))