Skip to content

Commit

Permalink
fixes compile error (#300)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG authored Nov 17, 2023
1 parent 1958a64 commit 52e794a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions integration-tests/ccip-tests/chaos/ccip_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package chaos_test

import (
"math/big"
"testing"
"time"

Expand Down Expand Up @@ -123,7 +124,7 @@ func TestChaosCCIP(t *testing.T) {

lane.RecordStateBeforeTransfer()
// Send the ccip-request and verify ocr2 is running
err := lane.SendRequests(1, testCfg.TestGroupInput.MsgType)
err := lane.SendRequests(1, testCfg.TestGroupInput.MsgType, big.NewInt(600_000))
require.NoError(t, err)
lane.ValidateRequests(true)

Expand All @@ -138,7 +139,7 @@ func TestChaosCCIP(t *testing.T) {
})
lane.RecordStateBeforeTransfer()
// Now send the ccip-request while the chaos is at play
err = lane.SendRequests(numOfRequests, testCfg.TestGroupInput.MsgType)
err = lane.SendRequests(numOfRequests, testCfg.TestGroupInput.MsgType, big.NewInt(600_000))
require.NoError(t, err)
if in.waitForChaosRecovery {
// wait for chaos to be recovered before further validation
Expand Down
4 changes: 2 additions & 2 deletions integration-tests/ccip-tests/load/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ func (l *loadArgs) setSchedule() {
func (l *loadArgs) SanityCheck() {
for _, lane := range l.TestSetupArgs.Lanes {
lane.ForwardLane.RecordStateBeforeTransfer()
err := lane.ForwardLane.SendRequests(1, l.TestCfg.TestGroupInput.MsgType)
err := lane.ForwardLane.SendRequests(1, l.TestCfg.TestGroupInput.MsgType, big.NewInt(600_000))
require.NoError(l.t, err)
lane.ForwardLane.ValidateRequests(true)
lane.ReverseLane.RecordStateBeforeTransfer()
err = lane.ReverseLane.SendRequests(1, l.TestCfg.TestGroupInput.MsgType)
err = lane.ReverseLane.SendRequests(1, l.TestCfg.TestGroupInput.MsgType, big.NewInt(600_000))
require.NoError(l.t, err)
lane.ReverseLane.ValidateRequests(true)
}
Expand Down

0 comments on commit 52e794a

Please sign in to comment.