From 98ab2f9438631795c20dc6b9929ce1b1929c24e6 Mon Sep 17 00:00:00 2001 From: Michael Genson <71845777+michael-genson@users.noreply.github.com> Date: Fri, 11 Jul 2025 22:31:55 +0000 Subject: [PATCH] restored old default qty for fixture to keep same test behavior --- tests/fixtures/fixture_recipe.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/fixtures/fixture_recipe.py b/tests/fixtures/fixture_recipe.py index 7d8f57c25..f3584da2d 100644 --- a/tests/fixtures/fixture_recipe.py +++ b/tests/fixtures/fixture_recipe.py @@ -37,12 +37,12 @@ def recipe_ingredient_only(unique_user: TestUser): group_id=unique_user.group_id, name=random_string(10), recipe_ingredient=[ - RecipeIngredient(note="Ingredient 1"), - RecipeIngredient(note="Ingredient 2"), - RecipeIngredient(note="Ingredient 3"), - RecipeIngredient(note="Ingredient 4"), - RecipeIngredient(note="Ingredient 5"), - RecipeIngredient(note="Ingredient 6"), + RecipeIngredient(quantity=1, note="Ingredient 1"), + RecipeIngredient(quantity=1, note="Ingredient 2"), + RecipeIngredient(quantity=1, note="Ingredient 3"), + RecipeIngredient(quantity=1, note="Ingredient 4"), + RecipeIngredient(quantity=1, note="Ingredient 5"), + RecipeIngredient(quantity=1, note="Ingredient 6"), ], )