From 9ce7b3a543fcd2977f9029ab25c09e8ad48d1dbc Mon Sep 17 00:00:00 2001 From: simsonraj Date: Tue, 28 May 2024 16:28:15 +0530 Subject: [PATCH] temp commit to run soaks with 1 contract --- integration-tests/testconfig/ocr/ocr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/testconfig/ocr/ocr.go b/integration-tests/testconfig/ocr/ocr.go index 0fd995a96f1..7b169822e35 100644 --- a/integration-tests/testconfig/ocr/ocr.go +++ b/integration-tests/testconfig/ocr/ocr.go @@ -127,7 +127,7 @@ func (o *SoakConfig) Validate() error { return errors.New("ocr_version must be set to either 1 or 2") } if o.NumberOfContracts == nil || *o.NumberOfContracts <= 1 { - return errors.New("number_of_contracts must be set and be greater than 1") + // return errors.New("number_of_contracts must be set and be greater than 1") } if o.TimeBetweenRounds == nil || o.TimeBetweenRounds.Duration == 0 { return errors.New("time_between_rounds must be set and be a positive integer")