From 54876363de44791ba65b6c43b795f8d0c3548ecc Mon Sep 17 00:00:00 2001 From: sowgro Date: Mon, 17 Mar 2025 21:45:31 -0400 Subject: Fix tests --- .../ufundapi/controller/CupboardControllerTest.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'ufund-api/src/test/java/com/ufund/api/ufundapi/controller') diff --git a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java index 100bf09..94f93cb 100644 --- a/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java +++ b/ufund-api/src/test/java/com/ufund/api/ufundapi/controller/CupboardControllerTest.java @@ -37,10 +37,10 @@ public class CupboardControllerTest { when(mockCupboardService.createNeed(name, maxGoal, type)).thenReturn(need); - Map needMap = Map.ofEntries( + Map needMap = Map.ofEntries( entry("name", "Test"), - entry("maxGoal", "100"), - entry("goalType", "MONETARY") + entry("maxGoal", 100), + entry("type", "MONETARY") ); var res = cupboardController.createNeed(needMap); @@ -53,10 +53,10 @@ public class CupboardControllerTest { public void createNeedBadMaxGoal() throws IOException, DuplicateKeyException { when(mockCupboardService.createNeed("Name", -100, Need.GoalType.MONETARY)).thenThrow(new IllegalArgumentException()); - Map needMap = Map.ofEntries( + Map needMap = Map.ofEntries( entry("name", "Name"), - entry("maxGoal", "-100"), - entry("goalType", "MONETARY")); + entry("maxGoal", -100), + entry("type", "MONETARY")); var res = cupboardController.createNeed(needMap); @@ -67,10 +67,10 @@ public class CupboardControllerTest { public void createNeedIOException() throws IOException, DuplicateKeyException { when(mockCupboardService.createNeed("Name", 100, Need.GoalType.MONETARY)).thenThrow(new IOException()); - Map needMap = Map.ofEntries( + Map needMap = Map.ofEntries( entry("name", "Name"), - entry("maxGoal", "100"), - entry("goalType", "MONETARY")); + entry("maxGoal", 100), + entry("type", "MONETARY")); var res = cupboardController.createNeed(needMap); -- cgit v1.2.3