From 80ff656931f09426861529601cd07c260c738abd Mon Sep 17 00:00:00 2001 From: "jaeseung.bae" Date: Wed, 4 Oct 2023 19:44:58 +0900 Subject: [PATCH] chore: fix for amount for insufficient fund test --- x/collection/keeper/msg_server_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/collection/keeper/msg_server_test.go b/x/collection/keeper/msg_server_test.go index bcdf1c616b..3111e48092 100644 --- a/x/collection/keeper/msg_server_test.go +++ b/x/collection/keeper/msg_server_test.go @@ -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, },