diff --git a/integration-tests/actions/ocr2_helpers.go b/integration-tests/actions/ocr2_helpers.go index 770a3fb4498..11f5caef309 100644 --- a/integration-tests/actions/ocr2_helpers.go +++ b/integration-tests/actions/ocr2_helpers.go @@ -377,6 +377,7 @@ func StartNewOCR2Round( timeout time.Duration, logger zerolog.Logger, ) error { + time.Sleep(5 * time.Second) for i := 0; i < len(ocrInstances); i++ { err := ocrInstances[i].RequestNewRound() if err != nil { diff --git a/integration-tests/smoke/chain_reader_and_codec_test.go b/integration-tests/smoke/chain_reader_and_codec_test.go index f6f26fef447..6620b2c2324 100644 --- a/integration-tests/smoke/chain_reader_and_codec_test.go +++ b/integration-tests/smoke/chain_reader_and_codec_test.go @@ -130,13 +130,8 @@ func TestOCRv2BasicWithChainReaderAndCodec(t *testing.T) { fmt.Printf("want 15 it's %v\n", roundData.Answer.Int64()) - /*require.Equal(t, int64(10), roundData.Answer.Int64(), - "Expected latest answer from OCR contract to be 10 but got %d", + require.Equal(t, int64(15), roundData.Answer.Int64(), + "Expected latest answer from OCR contract to be 15 but got %d", roundData.Answer.Int64(), - )*/ - - fmt.Println("SLEEPING NOW") - time.Sleep(time.Hour) - fmt.Println("DONE SLEEPING") - require.Fail(t, "Capture logs") + ) }