Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e4df8f3

Browse files
committedAug 23, 2023
convert actualBalance to int64
1 parent c42a9c4 commit e4df8f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎e2e/tests/transfer/base_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func (s *TransferTestSuite) TestMsgTransfer_Succeeds_Nonincentivized() {
106106
actualBalance, err := chainB.GetBalance(ctx, chainBAddress, chainBIBCToken.IBCDenom())
107107
s.Require().NoError(err)
108108

109-
s.Require().Equal(int64(0), actualBalance)
109+
s.Require().Equal(int64(0), actualBalance.int64())
110110

111111
if testvalues.TotalEscrowFeatureReleases.IsSupported(chainBVersion) {
112112
actualTotalEscrow, err := s.QueryTotalEscrowForDenom(ctx, chainB, chainBIBCToken.IBCDenom())

0 commit comments

Comments
 (0)
Please sign in to comment.