build: remove print

This commit is contained in:
CaptainB 2023-05-23 17:15:44 +08:00
parent 4dd20be507
commit 477065f623
1 changed files with 1 additions and 2 deletions

View File

@ -60,8 +60,7 @@ public class ProjectApplicationControllerTests {
mockMvc.perform(MockMvcRequestBuilders.get("/project/application/list/1"))
.andExpect(status().isOk())
.andExpect(content().contentType(MediaType.APPLICATION_JSON))
.andExpect(jsonPath("$.data[0].typeValue").value("2"))
.andDo(print());
.andExpect(jsonPath("$.data[0].typeValue").value("2"));
}
}