Merge pull request #22209 from XenoAmess

* gh-22209:
  Use valueOf rather than parseInt as result is assigned to an int

Closes gh-22209
This commit is contained in:
Andy Wilkinson 2020-07-07 10:27:14 +01:00
commit a118668212

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 {