aboutsummaryrefslogtreecommitdiffstats
path: root/utils/merkletrie
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 /utils/merkletrie
parent27a034c7643768a4ad486a64e8a1b59fa3f8b3b4 (diff)
downloadgo-git-f9cf9a99fd51bff8e002900a3a73d117ba54c887.tar.gz
fix nil
Diffstat (limited to 'utils/merkletrie')
-rw-r--r--utils/merkletrie/filesystem/node_test.go7
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) }