Remove redundant toString() invocation
Closes gh-7527
This commit is contained in:
committed by
Stephane Nicoll
parent
80da80f930
commit
fabe35fdc4
2
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/BasicErrorControllerIntegrationTests.java
Normal file → Executable file
2
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/web/BasicErrorControllerIntegrationTests.java
Normal file → Executable file
@@ -182,7 +182,7 @@ public class BasicErrorControllerIntegrationTests {
|
||||
.accept(MediaType.TEXT_HTML).build();
|
||||
ResponseEntity<String> entity = new TestRestTemplate().exchange(request,
|
||||
String.class);
|
||||
String resp = entity.getBody().toString();
|
||||
String resp = entity.getBody();
|
||||
assertThat(resp).contains("We are out of storage");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user