File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
ssl-config/src/test/scala/com/avast/sst/ssl Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ object Dependencies {
4141 val scalaTest = " org.scalatest" %% " scalatest" % " 3.2.19"
4242 val sentry = " io.sentry" % " sentry" % " 8.23.0"
4343 val slf4jApi = " org.slf4j" % " slf4j-api" % " 2.0.17"
44- val sslConfig = " com.typesafe" %% " ssl-config-core" % " 0.6.1 "
44+ val sslConfig = " com.typesafe" %% " ssl-config-core" % " 0.7.0-M3 "
4545 val testContainersScalaScalaTest = " com.dimafeng" %% " testcontainers-scala-scalatest" % " 0.43.0"
4646 val testContainersScalaKafka = " com.dimafeng" %% " testcontainers-scala-kafka" % " 0.43.0"
4747 val zio = " dev.zio" %% " zio" % " 1.0.18"
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ class SslContextModuleTest extends AnyFunSuite {
88
99 test(" SslContextModule initializes properly from JKS store with reference config" ) {
1010 val sslContext = SslContextModule .make[SyncIO ](ConfigFactory .empty()).unsafeRunSync()
11- assert(sslContext.getProtocol === " TLSv1.2 " )
11+ assert(sslContext.getProtocol === " TLSv1.3 " )
1212 }
1313
1414 test(" SslContextModule initializes properly from JKS store with provided config" ) {
1515 val sslContext = SslContextModule .make[SyncIO ](ConfigFactory .load().getConfig(" ssl-config" ), withReference = false ).unsafeRunSync()
16- assert(sslContext.getProtocol === " TLSv1.2 " )
16+ assert(sslContext.getProtocol === " TLSv1.3 " )
1717 }
1818
1919 test(" SslContextModule fails to initialize for empty config and no reference config" ) {
You can’t perform that action at this time.
0 commit comments