Skip to content

Commit 943d56e

Browse files
committed
Fix key's path
1 parent ec33b04 commit 943d56e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gxjwt/src/test/java/com/genexus/test/jwt/asymmetric/ECDSACurvesPrimeJwtTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ public void test_shouldWork() {
7070
}
7171

7272
private void prime192v1() {
73-
String pathKey = ECDSA_path + "prime192v1" + "\\key.pem";
74-
String pathCert = ECDSA_path + "prime192v1" + "\\cert.pem";
73+
String pathKey = ECDSA_path + "prime192v1" + "/key.pem";
74+
String pathCert = ECDSA_path + "prime192v1" + "/cert.pem";
7575
System.out.println("pathKey: " + pathKey);
7676
System.out.println("pathCert: " + pathCert);
7777
PrivateKeyManager key = new PrivateKeyManager();

0 commit comments

Comments
 (0)