diff --git a/engine/suppliers_test.go b/engine/suppliers_test.go index dbe98a35d..a1ec5e7de 100644 --- a/engine/suppliers_test.go +++ b/engine/suppliers_test.go @@ -670,11 +670,11 @@ func TestSuppliersSortedForEventWithLimitAndOffset(t *testing.T) { func TestSuppliersAsOptsGetSuppliers(t *testing.T) { s := &ArgsGetSuppliers{ - IgnoreErrors: false, + IgnoreErrors: true, MaxCost: "10.0", } spl := &optsGetSuppliers{ - ignoreErrors: false, + ignoreErrors: true, maxCost: 10.0, } sprf, err := s.asOptsGetSuppliers() @@ -688,10 +688,10 @@ func TestSuppliersAsOptsGetSuppliers(t *testing.T) { func TestSuppliersAsOptsGetSuppliersIgnoreErrors(t *testing.T) { s := &ArgsGetSuppliers{ - IgnoreErrors: false, + IgnoreErrors: true, } spl := &optsGetSuppliers{ - ignoreErrors: false, + ignoreErrors: true, } sprf, err := s.asOptsGetSuppliers() if err != nil {