Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit ad7e368

Browse files
Tests tests tests
1 parent ecc1fb0 commit ad7e368

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

  • integration-tests/ccip-tests/testsetups

integration-tests/ccip-tests/testsetups/ccip.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1195,7 +1195,10 @@ func CCIPDefaultTestSetUp(
11951195
if configureCLNode {
11961196
// wait for all jobs to get created
11971197
lggr.Info().Msg("Waiting for jobs to be created")
1198-
require.NoError(t, setUpArgs.JobAddGrp.Wait(), "Creating jobs shouldn't fail")
1198+
err2 := setUpArgs.JobAddGrp.Wait()
1199+
if err2 != nil {
1200+
lggr.Error().Err(err2).Msg("error waiting for jobs to be created")
1201+
}
11991202
// wait for price updates to be available
12001203
setUpArgs.WaitForPriceUpdates()
12011204
if isLeaderLaneFeatureEnabled(lggr) && !pointer.GetBool(setUpArgs.Cfg.TestGroupInput.ExistingDeployment) {

0 commit comments

Comments
 (0)