Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix stale imports in testplans/lotus-soup. #5425

Merged
merged 1 commit into from
Jan 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion testplans/lotus-soup/deals_e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (

"github.com/filecoin-project/lotus/build"

"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"
)

// This is the baseline test; Filecoin 101.
Expand Down
2 changes: 1 addition & 1 deletion testplans/lotus-soup/deals_stress.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/filecoin-project/lotus/api"
"github.com/ipfs/go-cid"

"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"
)

func dealsStress(t *testkit.TestEnvironment) error {
Expand Down
8 changes: 4 additions & 4 deletions testplans/lotus-soup/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ require (
github.com/davecgh/go-spew v1.1.1
github.com/drand/drand v1.2.1
github.com/filecoin-project/go-address v0.0.5-0.20201103152444-f2023ef3f5bb
github.com/filecoin-project/go-fil-markets v1.0.9
github.com/filecoin-project/go-fil-markets v1.1.2
github.com/filecoin-project/go-jsonrpc v0.1.2
github.com/filecoin-project/go-state-types v0.0.0-20201102161440-c8033295a1fc
github.com/filecoin-project/go-state-types v0.0.0-20210119062722-4adba5aaea71
github.com/filecoin-project/go-storedcounter v0.0.0-20200421200003-1c99c62e8a5b
github.com/filecoin-project/lotus v0.9.2-0.20201012041700-a2e0832a12f2
github.com/filecoin-project/oni/lotus-soup v0.0.0-20201016183302-a8430088b2b8
github.com/filecoin-project/specs-actors v0.9.13
github.com/google/uuid v1.1.2
github.com/gorilla/mux v1.7.4
github.com/hashicorp/go-multierror v1.1.0
github.com/influxdata/influxdb v1.8.3 // indirect
github.com/ipfs/go-cid v0.0.7
github.com/ipfs/go-datastore v0.4.5
github.com/ipfs/go-ipfs-files v0.0.8
Expand All @@ -32,7 +32,7 @@ require (
github.com/libp2p/go-libp2p-pubsub-tracer v0.0.0-20200626141350-e730b32bf1e6
github.com/multiformats/go-multiaddr v0.3.1
github.com/multiformats/go-multiaddr-net v0.2.0
github.com/testground/sdk-go v0.2.6-0.20201016180515-1e40e1b0ec3a
github.com/testground/sdk-go v0.2.6
go.opencensus.io v0.22.5
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9
)
Expand Down
152 changes: 60 additions & 92 deletions testplans/lotus-soup/go.sum

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions testplans/lotus-soup/main.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package main

import (
"github.com/filecoin-project/oni/lotus-soup/paych"
"github.com/filecoin-project/oni/lotus-soup/rfwp"
"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/paych"
"github.com/filecoin-project/lotus/testplans/lotus-soup/rfwp"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"

"github.com/testground/sdk-go/run"
)
Expand Down
2 changes: 1 addition & 1 deletion testplans/lotus-soup/paych/stress.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/filecoin-project/go-state-types/big"
"github.com/testground/sdk-go/sync"

"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"
)

var SendersDoneState = sync.State("senders-done")
Expand Down
2 changes: 1 addition & 1 deletion testplans/lotus-soup/rfwp/chain_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"github.com/filecoin-project/lotus/chain/store"
"github.com/filecoin-project/lotus/chain/types"

"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"

"github.com/filecoin-project/go-state-types/abi"
sealing "github.com/filecoin-project/lotus/extern/storage-sealing"
Expand Down
2 changes: 1 addition & 1 deletion testplans/lotus-soup/rfwp/diffs.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (

"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-state-types/big"
"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"
)

type ChainState struct {
Expand Down
2 changes: 1 addition & 1 deletion testplans/lotus-soup/rfwp/e2e.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/go-state-types/big"
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"
"golang.org/x/sync/errgroup"
)

Expand Down
2 changes: 1 addition & 1 deletion testplans/lotus-soup/rfwp/html_chain_state.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"os"

"github.com/filecoin-project/oni/lotus-soup/testkit"
"github.com/filecoin-project/lotus/testplans/lotus-soup/testkit"

"github.com/filecoin-project/go-address"
"github.com/filecoin-project/go-state-types/abi"
Expand Down
2 changes: 1 addition & 1 deletion testplans/lotus-soup/testkit/role_drand.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (
ma "github.com/multiformats/go-multiaddr"
"github.com/testground/sdk-go/sync"

"github.com/filecoin-project/oni/lotus-soup/statemachine"
"github.com/filecoin-project/lotus/testplans/lotus-soup/statemachine"
)

var (
Expand Down