Skip to content

Commit

Permalink
chore: fix replace test
Browse files Browse the repository at this point in the history
  • Loading branch information
johnletey committed Oct 16, 2023
1 parent 51e0b0c commit b958b91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interchaintest/cctp_replace_deposit_for_burn_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ func TestCCTP_ReplaceDepositForBurn(t *testing.T) {
SourceDomain: 4, // noble is 4
DestinationDomain: 0,
Nonce: 0, // dif per message
Sender: messageSender,
Sender: cctptypes.PaddedModuleAddress,
Recipient: cctptypes.PaddedModuleAddress,
DestinationCaller: emptyDestinationCaller,
MessageBody: depositForBurnBz,
Expand Down Expand Up @@ -267,7 +267,7 @@ func TestCCTP_ReplaceDepositForBurn(t *testing.T) {
require.Equal(t, wrappedDepositForBurn.SourceDomain, message.SourceDomain)
require.Equal(t, wrappedDepositForBurn.DestinationDomain, message.DestinationDomain)
require.Equal(t, wrappedDepositForBurn.Nonce, message.Nonce)
require.True(t, bytes.Equal(messageSender, message.Sender))
require.Equal(t, cctptypes.PaddedModuleAddress, message.Sender)
require.Equal(t, cctptypes.PaddedModuleAddress, message.Recipient)
require.Equal(t, newDestCaller, message.DestinationCaller)

Expand Down

0 comments on commit b958b91

Please sign in to comment.