chore: fix import grouping
Steven Allen committed
Aug 23, 2019 at 14:27 UTC
0871fa37797ab04ea107d4a3e06e9b9bb8fe8977
2 files changed
+2
-2
go.mod
+1
@@ -109,6 +109,7 @@ require (
109
go4.org v0.0.0-20190313082347-94abd6928b1d // indirect
110
golang.org/x/sys v0.0.0-20190626221950-04f50cda93cb
111
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 // indirect
112
+ google.golang.org/appengine v1.4.0 // indirect
113
gopkg.in/cheggaaa/pb.v1 v1.0.28
114
gotest.tools/gotestsum v0.3.4
115
)
namesys/ipns_resolver_validation_test.go
+1
-2
@@ -5,8 +5,6 @@ import (
5
"testing"
6
"time"
7
8
- "github.com/libp2p/go-libp2p-core/test"
9
-
8
ds "github.com/ipfs/go-datastore"
9
dssync "github.com/ipfs/go-datastore/sync"
10
mockrouting "github.com/ipfs/go-ipfs-routing/mock"
@@ -18,6 +16,7 @@ import (
16
peer "github.com/libp2p/go-libp2p-core/peer"
17
pstore "github.com/libp2p/go-libp2p-core/peerstore"
18
routing "github.com/libp2p/go-libp2p-core/routing"
19
+ "github.com/libp2p/go-libp2p-core/test"
20
pstoremem "github.com/libp2p/go-libp2p-peerstore/pstoremem"
21
record "github.com/libp2p/go-libp2p-record"
22
testutil "github.com/libp2p/go-libp2p-testing/net"