Skip to content

Commit

Permalink
convert actualBalance to int64
Browse files Browse the repository at this point in the history
  • Loading branch information
faddat committed Aug 23, 2023
1 parent c42a9c4 commit e4df8f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/tests/transfer/base_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (s *TransferTestSuite) TestMsgTransfer_Succeeds_Nonincentivized() {
actualBalance, err := chainB.GetBalance(ctx, chainBAddress, chainBIBCToken.IBCDenom())
s.Require().NoError(err)

s.Require().Equal(int64(0), actualBalance)
s.Require().Equal(int64(0), actualBalance.int64())

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

0 comments on commit e4df8f3

Please sign in to comment.