aboutsummaryrefslogtreecommitdiffstats
path: root/plumbing/format
diff options
context:
space:
mode:
authorOleg Kovalov <iamolegkovalov@gmail.com>2020-07-01 21:03:12 +0200
committerOleg Kovalov <iamolegkovalov@gmail.com>2020-07-01 21:03:12 +0200
commitf9cf9a99fd51bff8e002900a3a73d117ba54c887 (patch)
treee7b28b456ef3ed90eafc026b506786bea5df179e /plumbing/format
parent27a034c7643768a4ad486a64e8a1b59fa3f8b3b4 (diff)
downloadgo-git-f9cf9a99fd51bff8e002900a3a73d117ba54c887.tar.gz
fix nil
Diffstat (limited to 'plumbing/format')
-rw-r--r--plumbing/format/index/decoder_test.go2
-rw-r--r--plumbing/format/objfile/reader_test.go3
2 files changed, 3 insertions, 2 deletions
diff --git a/plumbing/format/index/decoder_test.go b/plumbing/format/index/decoder_test.go
index 4e47dde..39ab336 100644
--- a/plumbing/format/index/decoder_test.go
+++ b/plumbing/format/index/decoder_test.go
@@ -6,8 +6,8 @@ import (
"github.com/go-git/go-git/v5/plumbing"
"github.com/go-git/go-git/v5/plumbing/filemode"
+ fixtures "github.com/go-git/go-git-fixtures/v4"
. "gopkg.in/check.v1"
- "github.com/go-git/go-git-fixtures/v4"
)
func Test(t *testing.T) { TestingT(t) }
diff --git a/plumbing/format/objfile/reader_test.go b/plumbing/format/objfile/reader_test.go
index 48e7f1c..d697d54 100644
--- a/plumbing/format/objfile/reader_test.go
+++ b/plumbing/format/objfile/reader_test.go
@@ -7,8 +7,9 @@ import (
"io"
"io/ioutil"
- . "gopkg.in/check.v1"
"github.com/go-git/go-git/v5/plumbing"
+
+ . "gopkg.in/check.v1"
)
type SuiteReader struct{}