Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit eab44b6

Browse files
committedFeb 23, 2016
fix vendored paths in fuse code
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
1 parent d9b766d commit eab44b6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed
 

‎fuse/ipns/ipns_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
core "github.com/ipfs/go-ipfs/core"
1818
namesys "github.com/ipfs/go-ipfs/namesys"
1919
offroute "github.com/ipfs/go-ipfs/routing/offline"
20+
ci "github.com/ipfs/go-ipfs/thirdparty/testutil/ci"
2021
u "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util"
21-
ci "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util/testutil/ci"
2222
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
2323
)
2424

‎fuse/node/mount_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import (
99
"testing"
1010
"time"
1111

12-
context "github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
1312
core "github.com/ipfs/go-ipfs/core"
1413
ipns "github.com/ipfs/go-ipfs/fuse/ipns"
1514
mount "github.com/ipfs/go-ipfs/fuse/mount"
1615
namesys "github.com/ipfs/go-ipfs/namesys"
1716
offroute "github.com/ipfs/go-ipfs/routing/offline"
18-
ci "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util/testutil/ci"
17+
ci "github.com/ipfs/go-ipfs/thirdparty/testutil/ci"
18+
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
1919
)
2020

2121
func maybeSkipFuseTests(t *testing.T) {

‎fuse/readonly/ipfs_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ import (
2222
importer "github.com/ipfs/go-ipfs/importer"
2323
chunk "github.com/ipfs/go-ipfs/importer/chunk"
2424
dag "github.com/ipfs/go-ipfs/merkledag"
25+
ci "github.com/ipfs/go-ipfs/thirdparty/testutil/ci"
2526
uio "github.com/ipfs/go-ipfs/unixfs/io"
2627
u "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util"
27-
ci "gx/ipfs/QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1/go-ipfs-util/testutil/ci"
2828
)
2929

3030
func maybeSkipFuseTests(t *testing.T) {

‎merkledag/node.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55

66
"gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
77

8-
mh "gx/ipfs/QmYf7ng2hG5XBtJA3tN34DQ2GUN5HNksEw1rLDkmr6vGku/go-multihash"
98
key "github.com/ipfs/go-ipfs/blocks/key"
9+
mh "gx/ipfs/QmYf7ng2hG5XBtJA3tN34DQ2GUN5HNksEw1rLDkmr6vGku/go-multihash"
1010
)
1111

1212
var ErrLinkNotFound = fmt.Errorf("no link by that name")

‎routing/dht/dht_net.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import (
44
"errors"
55
"time"
66

7-
ggio "gx/ipfs/QmZ4Qi3GaRbjcx28Sme5eMH7RQjGkt8wHxt2a65oLaeFEV/gogo-protobuf/io"
87
ctxio "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-context/io"
98
pb "github.com/ipfs/go-ipfs/routing/dht/pb"
109
inet "gx/ipfs/QmUBogf4nUefBjmYjn6jfsfPJRkmDGSeMhNj4usRKq69f4/go-libp2p/p2p/net"
1110
peer "gx/ipfs/QmUBogf4nUefBjmYjn6jfsfPJRkmDGSeMhNj4usRKq69f4/go-libp2p/p2p/peer"
11+
ggio "gx/ipfs/QmZ4Qi3GaRbjcx28Sme5eMH7RQjGkt8wHxt2a65oLaeFEV/gogo-protobuf/io"
1212
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
1313
)
1414

0 commit comments

Comments
 (0)
Please sign in to comment.