diff --git a/integration-tests/modules/legacy_nft_assetnft_test.go b/integration-tests/modules/legacy_nft_assetnft_test.go index 78f0792c5..76185a1d6 100644 --- a/integration-tests/modules/legacy_nft_assetnft_test.go +++ b/integration-tests/modules/legacy_nft_assetnft_test.go @@ -35,7 +35,7 @@ func TestAssetNFTMintLegacyNFTClient(t *testing.T) { Messages: []sdk.Msg{ &assetnfttypes.MsgIssueClass{}, &assetnfttypes.MsgMint{}, - &nft.MsgSend{}, + &nft.MsgSend{}, //nolint:staticcheck // we are testing deprecated handlers }, Amount: chain.QueryAssetNFTParams(ctx, t).MintFee.Amount, }) @@ -120,7 +120,7 @@ func TestAssetNFTMintLegacyNFTClient(t *testing.T) { requireT.Equal(issuer.String(), ownerRes.Owner) // change the owner - sendMsg := &nft.MsgSend{ + sendMsg := &nft.MsgSend{ //nolint:staticcheck // we are testing deprecated handlers Sender: issuer.String(), Receiver: recipient.String(), Id: mintMsg.ID, diff --git a/integration-tests/modules/wasm_test.go b/integration-tests/modules/wasm_test.go index accfd9478..4881e80f4 100644 --- a/integration-tests/modules/wasm_test.go +++ b/integration-tests/modules/wasm_test.go @@ -825,7 +825,7 @@ func TestWASMAuthzContract(t *testing.T) { ID: "id-1", }, }) - + requireT.NoError(err) _, err = chain.Wasm.ExecuteWASMContract(ctx, chain.TxFactory().WithSimulateAndExecute(true), receiver, contractAddr, acceptNftOfferPayload, sdk.Coin{Denom: denom, Amount: sdkmath.NewInt(10000)}) requireT.NoError(err)