Skip to content

Commit

Permalink
update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
affanv14 committed Mar 15, 2024
1 parent fb72200 commit 9a7a4a1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion protocol/x/ratelimit/module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ func TestAppModuleBasic_GetQueryCmd(t *testing.T) {

cmd := am.GetQueryCmd()
require.Equal(t, "ratelimit", cmd.Use)
require.Equal(t, 2, len(cmd.Commands()))
require.Equal(t, 3, len(cmd.Commands()))
require.Equal(t, "capacity-by-denom", cmd.Commands()[0].Name())
require.Equal(t, "list-limit-params", cmd.Commands()[1].Name())
require.Equal(t, "pending-send-packets", cmd.Commands()[2].Name())
}

0 comments on commit 9a7a4a1

Please sign in to comment.