From ef1878d0b62ed939adcb42b3a21122d6ffbbafe4 Mon Sep 17 00:00:00 2001 From: Reece Williams Date: Mon, 16 Oct 2023 17:44:14 -0500 Subject: [PATCH] v7 imports --- examples/ibc/interchain_accounts_test.go | 2 +- interchain_builder.go | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/ibc/interchain_accounts_test.go b/examples/ibc/interchain_accounts_test.go index b259544ef..0c6b335fb 100644 --- a/examples/ibc/interchain_accounts_test.go +++ b/examples/ibc/interchain_accounts_test.go @@ -41,7 +41,7 @@ func TestInterchainAccounts(t *testing.T) { }, }) - chain1, chain2 := chains[0], chains[1] + chain1, chain2 := chains[0].(*cosmos.CosmosChain), chains[1].(*cosmos.CosmosChain) // Build the network; spin up the chains and configure the relayer const pathName = "test-path" diff --git a/interchain_builder.go b/interchain_builder.go index 11a5bce3f..ce76cc660 100644 --- a/interchain_builder.go +++ b/interchain_builder.go @@ -7,10 +7,10 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/types/module/testutil" "github.com/docker/docker/client" - "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" - "github.com/strangelove-ventures/interchaintest/v8/ibc" - "github.com/strangelove-ventures/interchaintest/v8/relayer" - "github.com/strangelove-ventures/interchaintest/v8/testreporter" + "github.com/strangelove-ventures/interchaintest/v7/chain/cosmos" + "github.com/strangelove-ventures/interchaintest/v7/ibc" + "github.com/strangelove-ventures/interchaintest/v7/relayer" + "github.com/strangelove-ventures/interchaintest/v7/testreporter" "github.com/stretchr/testify/require" "go.uber.org/zap/zaptest" )