@cryptotaxi247 / kubo / commits / 88030561c

gomod: fix import path

License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>

Jakub Sztandera committed Mar 4, 2019 at 22:26 UTC 88030561c784ee4c2c05afea4e57e7f64560d0b0
1 file changed +5 -6
test/dependencies/dependencies.go
+5 -6
@@ -3,11 +3,10 @@
3 package tools
4
5 import (
6 - _ "gotest.tools/gotestsum"
7 - _ "github.com/multiformats/go-multihash/multihash"
8 - _ "github.com/jbenet/go-random-files/random-files"
9 - _ "github.com/ipfs/hang-fds"
6 _ "github.com/ipfs/go-cidutil/cid-fmt"
11 - _ "go-build,github.com/jbenet/go-random/random"
7 + _ "github.com/ipfs/hang-fds"
8 + _ "github.com/jbenet/go-random-files/random-files"
9 + _ "github.com/jbenet/go-random/random"
10 + _ "github.com/multiformats/go-multihash/multihash"
11 + _ "gotest.tools/gotestsum"
12 )
13 -