Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lumtis committed Jan 15, 2025
1 parent 59ba496 commit dae90de
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions precompiles/bank/method_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package bank

import (
sdkmath "cosmossdk.io/math"
"math/big"
"testing"

Expand Down Expand Up @@ -634,6 +635,7 @@ func setupGasCoin(
symbol,
8,
nil,
sdkmath.NewUintFromString("100000000000000000000000000"),
)
require.NoError(t, err)
assertContractDeployment(t, *evmk, ctx, addr)
Expand Down
1 change: 1 addition & 0 deletions precompiles/staking/staking_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ func setupGasCoin(
symbol,
8,
nil,
math.NewUintFromString("100000000000000000000000000"),
)
require.NoError(t, err)
assertContractDeployment(t, *evmk, ctx, addr)
Expand Down
2 changes: 1 addition & 1 deletion x/crosschain/types/message_whitelist_erc20_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ func TestMsgWhitelistERC20_ValidateBasic(t *testing.T) {
Decimals: 6,
GasLimit: 10,
},
error: false,
error: true,
},
{
name: "valid message with evm asset address",
Expand Down

0 comments on commit dae90de

Please sign in to comment.