Skip to content

Commit

Permalink
Merge branch 'sai/13077' of github.com:gsk967/cosmos-sdk into sai/13077
Browse files Browse the repository at this point in the history
  • Loading branch information
gsk967 committed Sep 5, 2022
2 parents cfd361b + d120987 commit aca102d
Show file tree
Hide file tree
Showing 4 changed files with 1,842 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
//go:build e2e
// +build e2e

package testutil
package group

import (
"testing"

"github.com/cosmos/cosmos-sdk/simapp"
"github.com/cosmos/cosmos-sdk/testutil/network"
clienttestutil "github.com/cosmos/cosmos-sdk/x/group/client/testutil"

"github.com/stretchr/testify/suite"
)

func TestIntegrationTestSuite(t *testing.T) {
cfg := network.DefaultConfig(simapp.NewTestNetworkFixture)
cfg.NumValidators = 2
suite.Run(t, clienttestutil.NewIntegrationTestSuite(cfg))
suite.Run(t, NewIntegrationTestSuite(cfg))
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package testutil
package group

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion x/group/client/testutil/tx.go → tests/e2e/group/tx.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package testutil
package group

import (
"encoding/base64"
Expand Down
Loading

0 comments on commit aca102d

Please sign in to comment.