BAEL-4642: corrected formatting (#10610)

This commit is contained in:
freelansam 2021-03-31 07:40:44 +05:30 committed by GitHub
parent b532ae2a0c
commit 34d4a4032d
1 changed files with 13 additions and 11 deletions

View File

@ -23,11 +23,13 @@ public class OpenApiPetsIntegrationTest {
@Test
public void whenReadAll_thenStatusIsNotImplemented() throws Exception {
this.mockMvc.perform(get(PETS_PATH)).andExpect(status().isNotImplemented());
this.mockMvc.perform(get(PETS_PATH))
.andExpect(status().isNotImplemented());
}
@Test
public void whenReadOne_thenStatusIsNotImplemented() throws Exception {
this.mockMvc.perform(get(PETS_PATH + 1)).andExpect(status().isNotImplemented());
this.mockMvc.perform(get(PETS_PATH + 1))
.andExpect(status().isNotImplemented());
}
}