From ff757a29fa0124d5a04f218d4162669e0f70a2db Mon Sep 17 00:00:00 2001 From: Anevo Date: Fri, 13 Apr 2018 04:43:04 -0400 Subject: [PATCH] Changed IgnoreErrors to true --- engine/suppliers_test.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {