15-FixJavaLanguageLevelMigrationIssues

This commit is contained in:
Adrian-Devries 2025-04-24 12:54:04 +02:00
parent 46fdd703c3
commit d622da7979

View file

@ -31,7 +31,7 @@ public abstract class BaseIT {
public void setup() {
final String port = System.getProperty("daemon.port");
if (port != null) {
RestAssured.port = Integer.valueOf(port);
RestAssured.port = Integer.parseInt(port);
}
final String baseHost = System.getProperty("daemon.host");
if (baseHost != null) {