From d39dd15ce537d40ff016dd8a3fe6aa79b73479fb Mon Sep 17 00:00:00 2001 From: Michael Schurter Date: Mon, 4 Oct 2021 16:01:56 -0700 Subject: [PATCH] fix error in test --- get_git_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/get_git_test.go b/get_git_test.go index d175df0a3..db96b09ac 100644 --- a/get_git_test.go +++ b/get_git_test.go @@ -206,7 +206,7 @@ func TestGitGetter_shallowCloneWithTag(t *testing.T) { } // Verify the v1.1 file does not exists - mainPath := filepath.Join(dst, "v1.1.txt") + mainPath = filepath.Join(dst, "v1.1.txt") if _, err := os.Stat(mainPath); err == nil { t.Fatalf("expected v1.1 file to not exist") }