Use valueOf rather than parseInt as result is assigned to an int

See gh-22209
This commit is contained in:
XenoAmess 2020-07-03 18:36:55 +08:00 committed by Andy Wilkinson
parent e5b5622b1f
commit 7c73ed69e1

View File

@ -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 {