Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: Fix use of hardcoded cosmos... address (backport #2122) #2142

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/integration/distribution.go
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,9 @@ func (s *CCVTestSuite) TestIBCTransferMiddleware() {
getIBCDenom func(string, string) string
)

// set up an arbitrary address that is not the consumer rewards pool address
notConsumerRewardsPoolAddr := s.providerChain.SenderAccount.GetAddress().String()

testCases := []struct {
name string
setup func(sdk.Context, *providerkeeper.Keeper, icstestingutils.TestBankKeeper)
Expand All @@ -555,7 +558,7 @@ func (s *CCVTestSuite) TestIBCTransferMiddleware() {
{
"IBC Transfer recipient is not the consumer rewards pool address",
func(ctx sdk.Context, keeper *providerkeeper.Keeper, bankKeeper icstestingutils.TestBankKeeper) {
data.Receiver = "cosmos149lw9fktlqfed3zt8ah48r5czmsug5s7kw77u9" // random acct address
data.Receiver = notConsumerRewardsPoolAddr
packet.Data = data.GetBytes()
},
false,
Expand Down
Loading