diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2020-07-06 01:52:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-06 01:52:08 +0200 |
commit | a9899594dfdde8bbfdf35fc7e8c2fc3ec5aa7fdb (patch) | |
tree | e7b28b456ef3ed90eafc026b506786bea5df179e /plumbing/object/commitgraph/commitnode_test.go | |
parent | 9ac753f4afb36feb1a1c22214c16e853db54aa00 (diff) | |
parent | f9cf9a99fd51bff8e002900a3a73d117ba54c887 (diff) | |
download | go-git-a9899594dfdde8bbfdf35fc7e8c2fc3ec5aa7fdb.tar.gz |
Merge pull request #117 from cristaloleg/fix-goreportcard
fix goreportcard warnings
Diffstat (limited to 'plumbing/object/commitgraph/commitnode_test.go')
-rw-r--r-- | plumbing/object/commitgraph/commitnode_test.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plumbing/object/commitgraph/commitnode_test.go b/plumbing/object/commitgraph/commitnode_test.go index 38d3bce..6c9a643 100644 --- a/plumbing/object/commitgraph/commitnode_test.go +++ b/plumbing/object/commitgraph/commitnode_test.go @@ -4,13 +4,14 @@ import ( "path"
"testing"
- . "gopkg.in/check.v1"
- fixtures "github.com/go-git/go-git-fixtures/v4"
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/cache"
"github.com/go-git/go-git/v5/plumbing/format/commitgraph"
"github.com/go-git/go-git/v5/plumbing/format/packfile"
"github.com/go-git/go-git/v5/storage/filesystem"
+
+ fixtures "github.com/go-git/go-git-fixtures/v4"
+ . "gopkg.in/check.v1"
)
func Test(t *testing.T) { TestingT(t) }
|