6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-07 14:39:15 +00:00

Rename git package to repo package

This commit is contained in:
Grzegorz Dlugoszewski
2020-06-18 14:16:59 +02:00
parent da8f0931d0
commit 8511cd6c97
12 changed files with 65 additions and 65 deletions

View File

@@ -2,7 +2,7 @@ package print
import (
"fmt"
"git-get/pkg/git"
"git-get/pkg/repo"
"strings"
"testing"
)
@@ -91,9 +91,9 @@ gitlab.com/
}
for i, test := range tests {
var repos []*git.Repo
var repos []*repo.Repo
for _, path := range test.paths {
repos = append(repos, git.NewRepo(nil, path)) //&Repo{path: path})
repos = append(repos, repo.New(nil, path)) //&Repo{path: path})
}
printer := SmartTreePrinter{}