Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
harish551 committed Jan 29, 2024
1 parent c5e77e9 commit 50921ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/streampay/keeper/msg_server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ func (suite *KeeperTestSuite) TestStreamSendMsg() {
duration: time.Second * 100,
periods: nil,
cancellable: false,
paymentFee: sdk.Coin{"", sdk.NewInt(-1)},
paymentFee: sdk.Coin{Denom: "", Amount: sdk.NewInt(-1)},
valid: false,
expectedMessageEvents: 0,
},
{
sender: suite.TestAccs[0].String(),
recipient: suite.TestAccs[1].String(),
amount: sdk.Coin{"", sdk.NewInt(-1)},
amount: sdk.Coin{Denom: "", Amount: sdk.NewInt(-1)},
streamType: types.TypeContinuous,
duration: time.Second * 100,
periods: nil,
Expand Down

0 comments on commit 50921ae

Please sign in to comment.