Skip to content

Commit

Permalink
fix key test
Browse files Browse the repository at this point in the history
  • Loading branch information
nullpointer0x00 committed Aug 31, 2023
1 parent ef355ad commit 0eb020a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions x/marker/types/key_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@ func TestGetDenySendAddresses(t *testing.T) {
denyAddr := sdk.AccAddress("cosmos1v57fx2l2rt6ehujuu99u2fw05779m5e2ux4z2h")
denyKey := DenySendKey(addr, denyAddr)
mAddr, dAddr := GetDenySendAddresses(denyKey)
assert.Equal(t, mAddr, addr)
assert.Equal(t, dAddr, denyAddr)
assert.Equal(t, addr, mAddr, "module address")
assert.Equal(t, denyAddr, dAddr, "deny address")
}

0 comments on commit 0eb020a

Please sign in to comment.