diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-07-04 14:16:35 +0200 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-07-04 15:05:30 +0200 |
| commit | 813f363bff69acc436b3c300a2f699f643a644f8 (patch) | |
| tree | 8f2ee490eee7d467487b3f6634bfa611c8886f6c /pkg/vcs/git_test_util.go | |
| parent | 85b1d37b140571d85fff5aa77655ab1fa223fb36 (diff) | |
all: fix dup types in func args
Diffstat (limited to 'pkg/vcs/git_test_util.go')
| -rw-r--r-- | pkg/vcs/git_test_util.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
