Formatting

This commit is contained in:
Phillip Webb
2018-05-25 23:52:38 -07:00
parent 2215709165
commit 3702da4573
32 changed files with 195 additions and 199 deletions

View File

@@ -43,8 +43,7 @@ public class WebMvcTestPageableIntegrationTests {
@Test
public void shouldSupportPageable() throws Exception {
this.mvc.perform(get("/paged").param("page", "2").param("size", "42"))
.andExpect(status().isOk())
.andExpect(content().string("2:42"));
.andExpect(status().isOk()).andExpect(content().string("2:42"));
}
}