diff --git a/playground-backend/src/test/java/ch/sbb/playgroundbackend/controller/HelloWorldControllerTest.java b/playground-backend/src/test/java/ch/sbb/playgroundbackend/controller/HelloWorldControllerTest.java index 9f07ec2d..6ae12f87 100644 --- a/playground-backend/src/test/java/ch/sbb/playgroundbackend/controller/HelloWorldControllerTest.java +++ b/playground-backend/src/test/java/ch/sbb/playgroundbackend/controller/HelloWorldControllerTest.java @@ -20,7 +20,7 @@ class HelloWorldControllerTest { @Test void helloShouldReturnDefaultMessage() { - assertThat(this.restTemplate.getForObject("http://localhost:" + port + "/", - String.class)).contains("Hello Playground"); + assertThat(this.restTemplate.getForObject("http://localhost:" + port + "/", String.class)) + .contains("Hello Playground"); } }