Skip to content

Commit

Permalink
revert ictest
Browse files Browse the repository at this point in the history
  • Loading branch information
GNaD13 committed Sep 25, 2023
1 parent 37adc7b commit 58a4329
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions tests/interchaintest/basic_cosmos_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand All @@ -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,
},
Expand All @@ -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)
Expand Down
14 changes: 7 additions & 7 deletions tests/interchaintest/chain_start_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand All @@ -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,
},
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tests/interchaintest/ibc_transfer_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 58a4329

Please sign in to comment.