Fix typos in Staff integration tests

This commit is contained in:
Simon Bruder 2024-01-03 23:59:07 +01:00
parent 7fbd26d84c
commit 2d87b3928b
Signed by: simon
GPG key ID: 8D3C82F9F309F8EC
2 changed files with 2 additions and 2 deletions

View file

@ -207,7 +207,7 @@ class StaffControllerIntegrationTests {
@Test
@WithMockUser(username = "admin", password = "admin", roles = "ADMIN")
void viewHoursesOfWork() throws Exception {
void viewHoursOfWork() throws Exception {
mvc.perform(get("/staff").queryParam("month", "2023-12"))
.andExpect(status().isOk())
.andExpect(content().string(containsString("11.0")));

View file

@ -23,7 +23,7 @@ import catering.users.UserManagement;
import org.springframework.test.annotation.DirtiesContext;
@SpringBootTest
class StaffManagmentIntegratonTest {
class StaffManagmentIntegrationTest {
@Autowired
private StaffManagement staffManagement;