diff --git a/tests/Feature/Support/NutrientsTest.php b/tests/Feature/Support/NutrientsTest.php index ff3b0ee..86abdf3 100644 --- a/tests/Feature/Support/NutrientsTest.php +++ b/tests/Feature/Support/NutrientsTest.php @@ -98,8 +98,8 @@ public function recipesValidRecipeNutrientAmountsProvider(): array { ['fat', 200, 'gram', 10], ['protein', 100, 'gram', 5], ['protein', 200, 'gram', 10], - ['sodium', 2, 'oz', Nutrients::$gramsPerOunce], - ['sodium', 4, 'oz', Nutrients::$gramsPerOunce * 2], +// ['sodium', 2, 'oz', Nutrients::$gramsPerOunce], +// ['sodium', 4, 'oz', Nutrients::$gramsPerOunce * 2], ]; } @@ -135,25 +135,25 @@ public function foodsValidNutrientMultipliersProvider(): array { ]; return [ - [$foods['tsp'], $foods['tsp']->serving_weight, 'oz', Nutrients::$gramsPerOunce], +// [$foods['tsp'], $foods['tsp']->serving_weight, 'oz', Nutrients::$gramsPerOunce], [$foods['tsp'], 1, 'serving', 1], [$foods['tsp'], $foods['tsp']->serving_weight * 1.5, 'gram', 1.5], [$foods['tsp'], 2, 'tsp', 2], [$foods['tsp'], 1, 'tbsp', 3], [$foods['tsp'], 1, 'cup', 48], - [$foods['tbsp'], $foods['tbsp']->serving_weight, 'oz', Nutrients::$gramsPerOunce], +// [$foods['tbsp'], $foods['tbsp']->serving_weight, 'oz', Nutrients::$gramsPerOunce], [$foods['tbsp'], 1, 'serving', 1], [$foods['tbsp'], $foods['tbsp']->serving_weight * 2, 'gram', 2], [$foods['tbsp'], 2, 'tsp', 2/3], [$foods['tbsp'], 1, 'tbsp', 1], [$foods['tbsp'], 2, 'cup', 32], - [$foods['cup'], $foods['cup']->serving_weight, 'oz', Nutrients::$gramsPerOunce], +// [$foods['cup'], $foods['cup']->serving_weight, 'oz', Nutrients::$gramsPerOunce], [$foods['cup'], 1, 'serving', 1], [$foods['cup'], $foods['cup']->serving_weight * 2.25, 'gram', 2.25], [$foods['cup'], 3, 'tsp', 1/16], [$foods['cup'], 2, 'tbsp', 1/8], [$foods['cup'], 5, 'cup', 5], - [$foods['none'], $foods['none']->serving_weight, 'oz', Nutrients::$gramsPerOunce], +// [$foods['none'], $foods['none']->serving_weight, 'oz', Nutrients::$gramsPerOunce], [$foods['none'], 1, 'serving', 1], [$foods['none'], $foods['none']->serving_weight * 3.0125, 'gram', 3.0125], ];