fix code format issue

This commit is contained in:
Christian Beyer 2020-10-29 09:15:43 +01:00
parent 8cd5fcc467
commit 124eeb4f6c

View file

@ -18,12 +18,13 @@ public class OwnerControllerITCase {
private TestRestTemplate restTemplate; private TestRestTemplate restTemplate;
/** /**
* Note: This test exists only for the purpose of serving as an example! Please write tests more sensible * Note: This test exists only for the purpose of serving as an example! Please write
* than this for your own applications. * tests more sensible than this for your own applications.
*/ */
@Test @Test
public void assertsUser1IsGeorgeFranklin() { public void assertsUser1IsGeorgeFranklin() {
String body = this.restTemplate.getForObject("/owners/1", String.class); String body = this.restTemplate.getForObject("/owners/1", String.class);
assertThat(body).contains("<td><b>George Franklin</b></td>"); assertThat(body).contains("<td><b>George Franklin</b></td>");
} }
} }