diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-06-13 16:05:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-13 16:05:45 +0200 |
commit | e6ee8061c63e874f0bdbf719050524367c838428 (patch) | |
tree | f3cc74adf7be44ca946ca351537ce05aac4fddef /plumbing/format | |
parent | beab77aaed6ac84cbf97704f5507eae40350fefa (diff) | |
parent | 78dfa584698c14c7d8cdd822a65f6db9e053de7a (diff) | |
download | go-git-e6ee8061c63e874f0bdbf719050524367c838428.tar.gz |
Merge pull request #422 from smola/gofmt
fix gofmt
Diffstat (limited to 'plumbing/format')
-rw-r--r-- | plumbing/format/idxfile/decoder_test.go | 3 | ||||
-rw-r--r-- | plumbing/format/idxfile/encoder_test.go | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/plumbing/format/idxfile/decoder_test.go b/plumbing/format/idxfile/decoder_test.go index 27aa59b..609f4e3 100644 --- a/plumbing/format/idxfile/decoder_test.go +++ b/plumbing/format/idxfile/decoder_test.go @@ -5,10 +5,11 @@ import ( "fmt" "testing" - . "gopkg.in/check.v1" "github.com/src-d/go-git-fixtures" "gopkg.in/src-d/go-git.v4/plumbing/format/packfile" "gopkg.in/src-d/go-git.v4/storage/memory" + + . "gopkg.in/check.v1" ) func Test(t *testing.T) { TestingT(t) } diff --git a/plumbing/format/idxfile/encoder_test.go b/plumbing/format/idxfile/encoder_test.go index fab87b3..1fc4e9c 100644 --- a/plumbing/format/idxfile/encoder_test.go +++ b/plumbing/format/idxfile/encoder_test.go @@ -4,9 +4,10 @@ import ( "bytes" "io/ioutil" - . "gopkg.in/check.v1" "github.com/src-d/go-git-fixtures" "gopkg.in/src-d/go-git.v4/plumbing" + + . "gopkg.in/check.v1" ) func (s *IdxfileSuite) TestEncode(c *C) { |