diff options
| author | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 14:20:47 -0400 | 
|---|---|---|
| committer | Gunther6070 <haydenhartman10@yahoo.com> | 2025-03-17 14:20:47 -0400 | 
| commit | 5d79657cc37d33133c73621d290efeac566bf1b7 (patch) | |
| tree | 80687517943dab3ca589e48d82e1c4c58f2e5162 /ufund-api/src/test/java/com/ufund | |
| parent | 7acedfb955d800c806b8b59dc7261c53a6ec15d9 (diff) | |
| parent | 34a3f63ffb9f33a4817ea6d247499df5743b816a (diff) | |
| download | JellySolutions-5d79657cc37d33133c73621d290efeac566bf1b7.tar.gz JellySolutions-5d79657cc37d33133c73621d290efeac566bf1b7.tar.bz2 JellySolutions-5d79657cc37d33133c73621d290efeac566bf1b7.zip  | |
Merge branch 'service-tests' of https://github.com/RIT-SWEN-261-02/team-project-2245-swen-261-02-2b into service-tests
Diffstat (limited to 'ufund-api/src/test/java/com/ufund')
| -rw-r--r-- | ufund-api/src/test/java/com/ufund/api/ufundapi/service/CupboardServiceTest.java | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/ufund-api/src/test/java/com/ufund/api/ufundapi/service/CupboardServiceTest.java b/ufund-api/src/test/java/com/ufund/api/ufundapi/service/CupboardServiceTest.java index 884b8b0..99ca23c 100644 --- a/ufund-api/src/test/java/com/ufund/api/ufundapi/service/CupboardServiceTest.java +++ b/ufund-api/src/test/java/com/ufund/api/ufundapi/service/CupboardServiceTest.java @@ -186,7 +186,7 @@ public class CupboardServiceTest {          when(mockCupboardDAO.getNeeds()).thenReturn(new Need[0]);          // Invoke -        Boolean response = cupboardService.deleteNeed(id); +        boolean response = cupboardService.deleteNeed(id);          Need[] responseNeeds = cupboardService.getNeeds();          // Analyze  | 
