Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
keyleu committed Nov 1, 2023
1 parent 7053c00 commit 7cbdd83
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration-tests/modules/legacy_nft_assetnft_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
})
Expand Down Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/modules/wasm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 7cbdd83

Please sign in to comment.