Skip to content

Commit

Permalink
updates
Browse files Browse the repository at this point in the history
  • Loading branch information
julienrbrt committed Jun 22, 2022
1 parent afb9bd2 commit da161eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions x/distribution/client/testutil/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,8 @@ func (s *IntegrationTestSuite) TestNewFundCommunityPoolCmd() {
}

func (s *IntegrationTestSuite) TestGetCmdSubmitProposal() {
s.T().Skip() // TODO to re-enable in #12274

val := s.network.Validators[0]
invalidProp := `{
"title": "",
Expand Down
3 changes: 1 addition & 2 deletions x/distribution/keeper/querier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,20 +116,19 @@ func getQueriedCommunityPool(t *testing.T, ctx sdk.Context, cdc *codec.LegacyAmi

func TestQueries(t *testing.T) {
var (
cdc *codec.LegacyAmino
bankKeeper bankkeeper.Keeper
distrKeeper keeper.Keeper
stakingKeeper *stakingkeeper.Keeper
)

app, err := simtestutil.Setup(testutil.AppConfig,
&cdc,
&bankKeeper,
&distrKeeper,
&stakingKeeper,
)
require.NoError(t, err)

cdc := codec.NewLegacyAmino()
types.RegisterLegacyAminoCodec(cdc)
banktypes.RegisterLegacyAminoCodec(cdc)

Expand Down

0 comments on commit da161eb

Please sign in to comment.