diff --git a/channels/channels_test.go b/channels/channels_test.go index c62311a..3e26af1 100644 --- a/channels/channels_test.go +++ b/channels/channels_test.go @@ -8,7 +8,6 @@ import ( "testing" "time" - versionedds "github.com/filecoin-project/go-ds-versioning/pkg/datastore" "github.com/ipfs/go-cid" "github.com/ipfs/go-datastore" dss "github.com/ipfs/go-datastore/sync" @@ -18,12 +17,14 @@ import ( "github.com/stretchr/testify/require" "golang.org/x/xerrors" + versioning "github.com/filecoin-project/go-ds-versioning/pkg" + versionedds "github.com/filecoin-project/go-ds-versioning/pkg/datastore" + datatransfer "github.com/filecoin-project/go-data-transfer/v2" "github.com/filecoin-project/go-data-transfer/v2/channels" "github.com/filecoin-project/go-data-transfer/v2/channels/internal" "github.com/filecoin-project/go-data-transfer/v2/channels/internal/migrations" "github.com/filecoin-project/go-data-transfer/v2/testutil" - versioning "github.com/filecoin-project/go-ds-versioning/pkg" ) func TestChannels(t *testing.T) { diff --git a/transport/graphsync/exceptions_test.go b/transport/graphsync/exceptions_test.go index 1e70c74..c484572 100644 --- a/transport/graphsync/exceptions_test.go +++ b/transport/graphsync/exceptions_test.go @@ -7,17 +7,18 @@ import ( "testing" "time" - datatransfer "github.com/filecoin-project/go-data-transfer/v2" - "github.com/filecoin-project/go-data-transfer/v2/message" - "github.com/filecoin-project/go-data-transfer/v2/testutil" - "github.com/filecoin-project/go-data-transfer/v2/transport/graphsync/extension" - "github.com/filecoin-project/go-data-transfer/v2/transport/graphsync/testharness" "github.com/ipfs/go-graphsync" "github.com/ipld/go-ipld-prime/datamodel" cidlink "github.com/ipld/go-ipld-prime/linking/cid" basicnode "github.com/ipld/go-ipld-prime/node/basic" "github.com/stretchr/testify/require" "golang.org/x/exp/rand" + + datatransfer "github.com/filecoin-project/go-data-transfer/v2" + "github.com/filecoin-project/go-data-transfer/v2/message" + "github.com/filecoin-project/go-data-transfer/v2/testutil" + "github.com/filecoin-project/go-data-transfer/v2/transport/graphsync/extension" + "github.com/filecoin-project/go-data-transfer/v2/transport/graphsync/testharness" ) func TestTransferExceptions(t *testing.T) {