diff options
| author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-16 23:11:58 -0400 | 
|---|---|---|
| committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-16 23:11:58 -0400 | 
| commit | 34a3f63ffb9f33a4817ea6d247499df5743b816a (patch) | |
| tree | 58edb23568cada8af63a9a358cfc502c1c682107 /ufund-api/src/test/java/com/ufund | |
| parent | 7d5df1efe71963f100c445f3cd0da1546e7ffb6e (diff) | |
| download | JellySolutions-34a3f63ffb9f33a4817ea6d247499df5743b816a.tar.gz JellySolutions-34a3f63ffb9f33a4817ea6d247499df5743b816a.tar.bz2 JellySolutions-34a3f63ffb9f33a4817ea6d247499df5743b816a.zip  | |
fix warning
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  | 
