fixed all pipeline errors
This commit is contained in:
parent
2339d70499
commit
b38e0e7482
1 changed files with 2 additions and 1 deletions
|
|
@ -28,10 +28,11 @@ public class PrintExportTest {
|
|||
List<String> ingredients = new ArrayList<>();
|
||||
ingredients.add("Banana");
|
||||
ingredients.add("Bread");
|
||||
final long testRecipeId = 1234L;
|
||||
List<String> preparationSteps = new ArrayList<>();
|
||||
preparationSteps.add("Mix Ingredients");
|
||||
preparationSteps.add("Heat in Oven");
|
||||
Recipe recipe1 = new Recipe(1234L, "Banana Bread", ingredients, preparationSteps);
|
||||
Recipe recipe1 = new Recipe(testRecipeId, "Banana Bread", ingredients, preparationSteps);
|
||||
|
||||
assertEquals("""
|
||||
Title: Banana Bread
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue