Skip to content

Commit 54ef758

Browse files
committed
Change use pem
1 parent b159da1 commit 54ef758

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

module/ldbc-connector/native/src/test/scala/ldbc/connector/TLSConnectionTest.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class TLSConnectionTest extends FTestPlatform:
1818
test("Verify that you can connect to MySQL with a TLS connection") {
1919
assertIO(
2020
(for
21-
cert <- Resource.eval(Files[IO].readAll(Path("database/ssl/client-cert.pem")).compile.to(ByteVector))
22-
key <- Resource.eval(Files[IO].readAll(Path("database/ssl/client-key.pem")).compile.to(ByteVector))
21+
cert <- Resource.eval(Files[IO].readAll(Path("database/ssl/ca.pem")).compile.to(ByteVector))
22+
key <- Resource.eval(Files[IO].readAll(Path("database/ssl/ca-key.pem")).compile.to(ByteVector))
2323
cfg <- S2nConfig.builder
2424
.withCertChainAndKeysToStore(List(CertChainAndKey(cert, key)))
2525
.withPemsToTrustStore(List(cert.decodeAscii.toOption.get))

0 commit comments

Comments
 (0)