Skip to content

Commit

Permalink
Failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-sekara committed Oct 30, 2024
1 parent aef747d commit b2f72f0
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -303,11 +303,13 @@ func TestCCIPReader_MsgsBetweenSeqNums(t *testing.T) {
return msgs[i].Header.SequenceNumber < msgs[j].Header.SequenceNumber
})
require.Equal(t, cciptypes.SeqNum(10), msgs[0].Header.SequenceNumber)
require.Equal(t, cciptypes.SeqNum(15), msgs[1].Header.SequenceNumber)
require.Equal(t, big.NewInt(1), msgs[0].FeeTokenAmount.Int)
require.Equal(t, big.NewInt(2), msgs[0].FeeValueJuels.Int)

require.Equal(t, cciptypes.SeqNum(15), msgs[1].Header.SequenceNumber)
require.Equal(t, big.NewInt(3), msgs[1].FeeTokenAmount.Int)
require.Equal(t, big.NewInt(4), msgs[1].FeeValueJuels.Int)

for _, msg := range msgs {
require.Equal(t, chainS1, msg.Header.SourceChainSelector)
require.Equal(t, chainD, msg.Header.DestChainSelector)
Expand Down

0 comments on commit b2f72f0

Please sign in to comment.