Skip to content

Commit

Permalink
chore: fix for amount for insufficient fund test
Browse files Browse the repository at this point in the history
  • Loading branch information
jaeseung-bae committed Oct 10, 2023
1 parent c067b31 commit 80ff656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/collection/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func (s *KeeperTestSuite) TestMsgOperatorSendFT() {
Operator: s.operator.String(),
From: s.customer.String(),
To: s.vendor.String(),
Amount: collection.NewCoins(collection.NewFTCoin(s.ftClassID, s.balance)),
Amount: collection.NewCoins(collection.NewFTCoin(s.ftClassID, s.balance.Add(sdk.OneInt()))),
},
expectedError: collection.ErrInsufficientToken,
},
Expand Down

0 comments on commit 80ff656

Please sign in to comment.