6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 17:59:49 +00:00

Move test package inside the git package

It is not being used by other packages so it should belong to `git` package.
This commit is contained in:
Grzegorz Dlugoszewski
2020-07-27 12:17:30 +02:00
parent 3aef50a4d0
commit c2fe6e6bab
5 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
package git
import (
"git-get/pkg/test"
"git-get/pkg/git/test"
"reflect"
"testing"
)
@@ -31,7 +31,7 @@ func TestUncommitted(t *testing.T) {
want: 0,
},
{
name: "single tracked ",
name: "single tracked",
repoMaker: test.RepoWithStaged,
want: 1,
},