From 58a4329429eb319173ff320ad79b58333b8b8ced Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Mon, 25 Sep 2023 19:27:31 +0700 Subject: [PATCH] revert ictest --- tests/interchaintest/basic_cosmos_test.go | 12 ++++++------ tests/interchaintest/chain_start_test.go | 14 +++++++------- tests/interchaintest/ibc_transfer_test.go | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/tests/interchaintest/basic_cosmos_test.go b/tests/interchaintest/basic_cosmos_test.go index 1a16f29d9..e842eba4c 100644 --- a/tests/interchaintest/basic_cosmos_test.go +++ b/tests/interchaintest/basic_cosmos_test.go @@ -11,8 +11,8 @@ import ( "go.uber.org/zap/zaptest" ) -// TestStartComposable is a basic test to assert that spinning up a Composable network with 1 validator works properly. -func TestBasicComposable(t *testing.T) { +// TestStartCentauri is a basic test to assert that spinning up a Composable network with 1 validator works properly. +func TestBasicCentauri(t *testing.T) { if testing.Short() { t.Skip() } @@ -27,8 +27,8 @@ func TestBasicComposable(t *testing.T) { cf := interchaintest.NewBuiltinChainFactory(zaptest.NewLogger(t), []*interchaintest.ChainSpec{ { - Name: "composable", - ChainConfig: composableConfig, + Name: "centauri", + ChainConfig: centauriConfig, NumValidators: &numVals, NumFullNodes: &numFullNodes, }, @@ -38,13 +38,13 @@ func TestBasicComposable(t *testing.T) { chains, err := cf.Chains(t.Name()) require.NoError(t, err) - composable := chains[0].(*cosmos.CosmosChain) + centauri := chains[0].(*cosmos.CosmosChain) // Relayer Factory client, network := interchaintest.DockerSetup(t) // Create a new Interchain object which describes the chains, relayers, and IBC connections we want to use - ic := interchaintest.NewInterchain().AddChain(composable) + ic := interchaintest.NewInterchain().AddChain(centauri) rep := testreporter.NewNopReporter() eRep := rep.RelayerExecReporter(t) diff --git a/tests/interchaintest/chain_start_test.go b/tests/interchaintest/chain_start_test.go index df415f5a8..db5349392 100644 --- a/tests/interchaintest/chain_start_test.go +++ b/tests/interchaintest/chain_start_test.go @@ -11,8 +11,8 @@ import ( "go.uber.org/zap/zaptest" ) -// TestStartComposable is a basic test to assert that spinning up a composable network with 1 validator works properly. -func TestStartComposable(t *testing.T) { +// TestStartcentauri is a basic test to assert that spinning up a composable network with 1 validator works properly. +func TestStartCentauri(t *testing.T) { if testing.Short() { t.Skip() } @@ -21,14 +21,14 @@ func TestStartComposable(t *testing.T) { ctx := context.Background() - // Create chain factory with Composable + // Create chain factory with Centauri numVals := 1 numFullNodes := 1 cf := interchaintest.NewBuiltinChainFactory(zaptest.NewLogger(t), []*interchaintest.ChainSpec{ { - Name: "composable", - ChainConfig: composableConfig, + Name: "centauri", + ChainConfig: centauriConfig, NumValidators: &numVals, NumFullNodes: &numFullNodes, }, @@ -38,13 +38,13 @@ func TestStartComposable(t *testing.T) { chains, err := cf.Chains(t.Name()) require.NoError(t, err) - composable := chains[0].(*cosmos.CosmosChain) + centauri := chains[0].(*cosmos.CosmosChain) // Relayer Factory client, network := interchaintest.DockerSetup(t) // Create a new Interchain object which describes the chains, relayers, and IBC connections we want to use - ic := interchaintest.NewInterchain().AddChain(composable) + ic := interchaintest.NewInterchain().AddChain(centauri) rep := testreporter.NewNopReporter() eRep := rep.RelayerExecReporter(t) diff --git a/tests/interchaintest/ibc_transfer_test.go b/tests/interchaintest/ibc_transfer_test.go index d8691a7dd..8e56f2fb3 100644 --- a/tests/interchaintest/ibc_transfer_test.go +++ b/tests/interchaintest/ibc_transfer_test.go @@ -29,7 +29,7 @@ import ( // * create client, connection, and channel in relayer // * start relayer // * send transfer over ibc -func TestComposablePicassoIBCTransfer(t *testing.T) { +func TestCentauriPicassoIBCTransfer(t *testing.T) { if testing.Short() { t.Skip() }