From 2b3377a3b8281be080d412bc03eed3fc24b09a5a Mon Sep 17 00:00:00 2001 From: Anders Austlid <andemau@ntnu.no> Date: Wed, 3 May 2023 10:39:34 +0200 Subject: [PATCH] Fixed syntax error in fridge controller tests --- .../v233/SmartMat/controller/group/FridgeControllerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/ntnu/idatt2016/v233/SmartMat/controller/group/FridgeControllerTest.java b/src/test/java/ntnu/idatt2016/v233/SmartMat/controller/group/FridgeControllerTest.java index 8e382735..307be4db 100644 --- a/src/test/java/ntnu/idatt2016/v233/SmartMat/controller/group/FridgeControllerTest.java +++ b/src/test/java/ntnu/idatt2016/v233/SmartMat/controller/group/FridgeControllerTest.java @@ -49,7 +49,7 @@ public class FridgeControllerTest { fridge = new Fridge(); product = new Product(); fridgeProductAsso = new FridgeProductAsso(); - fridgeProductRequest = new FridgeProductRequest(1L, 1L, 1L, 2, 7); + fridgeProductRequest = new FridgeProductRequest(1L, 1L, 1L, 2, 7, 100); } @Test -- GitLab