Description
TestKeyShell and TestCredShell assume UNIX path separator for JECKS key store path. This will fail the tests on Windows which uses a different path separator. The fix should be something like:
- jceksProvider = "jceks://file" + tmpDir + "/keystore.jceks"; + final Path jksPath = new Path(tmpDir.toString(), "keystore.jceks"); + jceksProvider = "jceks://file" + jksPath.toUri();