From 813f363bff69acc436b3c300a2f699f643a644f8 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Sat, 4 Jul 2020 14:16:35 +0200 Subject: all: fix dup types in func args --- pkg/vcs/git_test_util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/vcs/git_test_util.go') diff --git a/pkg/vcs/git_test_util.go b/pkg/vcs/git_test_util.go index 4b62582ec..09f5a6af6 100644 --- a/pkg/vcs/git_test_util.go +++ b/pkg/vcs/git_test_util.go @@ -110,7 +110,7 @@ func CreateTestRepo(t *testing.T, baseDir, name string) *TestRepo { return repo } -func CloneTestRepo(t *testing.T, baseDir string, name string, originRepo *TestRepo) *TestRepo { +func CloneTestRepo(t *testing.T, baseDir, name string, originRepo *TestRepo) *TestRepo { dir := filepath.Join(baseDir, name) if err := osutil.MkdirAll(dir); err != nil { t.Fatal(err) -- cgit mrf-deployment