Skip to content

Commit

Permalink
Tests tests tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusz-sekara committed Jan 15, 2025
1 parent ecc1fb0 commit ad7e368
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion integration-tests/ccip-tests/testsetups/ccip.go
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,10 @@ func CCIPDefaultTestSetUp(
if configureCLNode {
// wait for all jobs to get created
lggr.Info().Msg("Waiting for jobs to be created")
require.NoError(t, setUpArgs.JobAddGrp.Wait(), "Creating jobs shouldn't fail")
err2 := setUpArgs.JobAddGrp.Wait()
if err2 != nil {
lggr.Error().Err(err2).Msg("error waiting for jobs to be created")
}
// wait for price updates to be available
setUpArgs.WaitForPriceUpdates()
if isLeaderLaneFeatureEnabled(lggr) && !pointer.GetBool(setUpArgs.Cfg.TestGroupInput.ExistingDeployment) {
Expand Down

0 comments on commit ad7e368

Please sign in to comment.