Fixed report file location URL

This commit is contained in:
Erik C. Thauvin 2024-05-11 15:22:17 -07:00
parent cf879d30db
commit a5ce6ab0ec
Signed by: erik
GPG key ID: 776702A6A2DA330E

View file

@ -189,7 +189,8 @@ public class TestNgOperation extends TestOperation<TestNgOperation, List<String>
}
if (LOGGER.isLoggable(Level.INFO)) {
LOGGER.info(String.format("Report will be saved in file://%s", new File(options.get("-d"))));
LOGGER.info(String.format("Report will be saved in file://%s",
new File(options.get("-d")).toURI().getPath()));
}
return args;