Use valueOf rather than parseInt as result is assigned to an int
See gh-22209
This commit is contained in:
committed by
Andy Wilkinson
parent
e5b5622b1f
commit
7c73ed69e1
@@ -519,7 +519,7 @@ class ServerPropertiesTests {
|
||||
template.postForEntity(URI.create("http://localhost:" + jetty.getPort() + "/form"), entity, Void.class);
|
||||
assertThat(failure.get()).isNotNull();
|
||||
String message = failure.get().getCause().getMessage();
|
||||
int defaultMaxPostSize = Integer.valueOf(message.substring(message.lastIndexOf(' ')).trim());
|
||||
int defaultMaxPostSize = Integer.parseInt(message.substring(message.lastIndexOf(' ')).trim());
|
||||
assertThat(this.properties.getJetty().getMaxHttpFormPostSize().toBytes()).isEqualTo(defaultMaxPostSize);
|
||||
}
|
||||
finally {
|
||||
|
||||
Reference in New Issue
Block a user