diff options
author | Oleg Kovalov <iamolegkovalov@gmail.com> | 2020-07-01 21:03:12 +0200 |
---|---|---|
committer | Oleg Kovalov <iamolegkovalov@gmail.com> | 2020-07-01 21:03:12 +0200 |
commit | f9cf9a99fd51bff8e002900a3a73d117ba54c887 (patch) | |
tree | e7b28b456ef3ed90eafc026b506786bea5df179e /utils/merkletrie/filesystem/node_test.go | |
parent | 27a034c7643768a4ad486a64e8a1b59fa3f8b3b4 (diff) | |
download | go-git-f9cf9a99fd51bff8e002900a3a73d117ba54c887.tar.gz |
fix nil
Diffstat (limited to 'utils/merkletrie/filesystem/node_test.go')
-rw-r--r-- | utils/merkletrie/filesystem/node_test.go | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/utils/merkletrie/filesystem/node_test.go b/utils/merkletrie/filesystem/node_test.go index 0f6ebe0..159e63d 100644 --- a/utils/merkletrie/filesystem/node_test.go +++ b/utils/merkletrie/filesystem/node_test.go @@ -7,12 +7,13 @@ import ( "path" "testing" - "github.com/go-git/go-billy/v5" - "github.com/go-git/go-billy/v5/memfs" - . "gopkg.in/check.v1" "github.com/go-git/go-git/v5/plumbing" "github.com/go-git/go-git/v5/utils/merkletrie" "github.com/go-git/go-git/v5/utils/merkletrie/noder" + + "github.com/go-git/go-billy/v5" + "github.com/go-git/go-billy/v5/memfs" + . "gopkg.in/check.v1" ) func Test(t *testing.T) { TestingT(t) } |