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

See gh-22209
pull/22256/head
XenoAmess 4 years ago 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); template.postForEntity(URI.create("http://localhost:" + jetty.getPort() + "/form"), entity, Void.class);
assertThat(failure.get()).isNotNull(); assertThat(failure.get()).isNotNull();
String message = failure.get().getCause().getMessage(); 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); assertThat(this.properties.getJetty().getMaxHttpFormPostSize().toBytes()).isEqualTo(defaultMaxPostSize);
} }
finally { finally {

Loading…
Cancel
Save