Changed IgnoreErrors to true

This commit is contained in:
Anevo
2018-04-13 04:43:04 -04:00
committed by Dan Christian Bogos
parent c0e25dff39
commit ff757a29fa

View File

@@ -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 {