From cd085e0641c47490e771625202a648e4de0970fa Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Thu, 12 Dec 2019 16:46:28 +0100 Subject: [PATCH] Polish contribution See gh-19326 --- .../sample/test/SampleTestApplicationWebIntegrationTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spring-boot-samples/spring-boot-sample-test/src/test/java/sample/test/SampleTestApplicationWebIntegrationTests.java b/spring-boot-samples/spring-boot-sample-test/src/test/java/sample/test/SampleTestApplicationWebIntegrationTests.java index 571a4c95f72..39d7cd2240f 100644 --- a/spring-boot-samples/spring-boot-sample-test/src/test/java/sample/test/SampleTestApplicationWebIntegrationTests.java +++ b/spring-boot-samples/spring-boot-sample-test/src/test/java/sample/test/SampleTestApplicationWebIntegrationTests.java @@ -61,8 +61,8 @@ public class SampleTestApplicationWebIntegrationTests { @Test public void test() { - assertThat(this.restTemplate.getForEntity("/{username}/vehicle", String.class, "sframework") - .getStatusCode()).isEqualTo(HttpStatus.OK); + assertThat(this.restTemplate.getForEntity("/{username}/vehicle", String.class, "sframework").getStatusCode()) + .isEqualTo(HttpStatus.OK); } }