feat(employee): add action to remove employee from project (SCRUM-23) #35

Merged
jank merged 4 commits from feature/remove-employee into main 2024-10-23 09:51:12 +00:00
Showing only changes of commit 304a88ae0e - Show all commits

@ -136,6 +136,6 @@ class UpdateProjectActionTest {
@Test
void updateProjectShouldReturnNotFoundResponseWhenProjectIsNotFound() throws Exception {
this.mockMvc.perform(put("/projects/2").content("{}").contentType(MediaType.APPLICATION_JSON)).andExpect(status().isNotFound());
this.mockMvc.perform(put("/projects/98723498798").content("{}").contentType(MediaType.APPLICATION_JSON)).andExpect(status().isNotFound());
}
}