add integration test to find all user controller with success

This commit is contained in:
rayankonecny 2025-12-13 16:14:21 +00:00
parent 6a268f5cb3
commit 36ec46a2ea

View file

@ -66,7 +66,7 @@ public class UserControllerImpTest {
.andExpect(jsonPath("$[1]").isNotEmpty())
.andExpect(jsonPath("$[0].profiles").isArray());
userRepository.deleteAll(List.of(entity1,entity2));
userRepository.deleteAll(List.of(entity1,entity2));
}