When I tried to test the delete method from the UserController, I would keep getting 400 as my returning status code, not 200.


Turns out, it was my request DTO not being able to access the delete method in the controller due to the fact that there only a single "argument" in the DTO class when I was using an @AllArgsContructor. The error went away when I added the @NoArgsContructor tag.
